forked from claudioperez/o3seespy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (46 loc) · 1.78 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
about = {}
with open("o3seespy/__about__.py") as fp:
exec(fp.read(), about)
with open('README.rst') as readme_file:
readme = readme_file.read()
# with open('HISTORY.rst') as history_file:
# history = history_file.read()
setup(name='o3seespy',
version=about['__version__'],
description='Object-oriented native Python version of OpenSees',
long_description=readme, # + '\n\n' + history,
url='',
author=about['__author__'],
author_email='[email protected]',
license=about['__license__'],
package_data={
'o3seespy': ['o3seespy/command/mat_recorder_options.csv'],
},
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3',
],
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples',
'_auto_build', '.github']),
install_requires=[
"numpy", # now it is optional
],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
'test': ['pytest'],
},
python_requires='>=3',
zip_safe=False)
# From python packaging guides
# versioning is a 3-part MAJOR.MINOR.MAINTENANCE numbering scheme,
# where the project author increments:
# MAJOR version when they make incompatible API changes,
# MINOR version when they add functionality in a backwards-compatible manner, and
# MAINTENANCE version when they make backwards-compatible bug fixes.