-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (52 loc) · 1.8 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
54
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='DaeSystemsSolver',
version='0.1.0',
author='Darshan',
author_email='I forget what his email is',
license='LGPLv3+',
keywords='dae',
# url='http://github.com/LSDOlab/lsdo_geo',
# download_url='',
# description='A package for geometry and state modeling/representation, parameterization, and mesh creation for MDO.',
# long_description=long_description,
# long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.7',
platforms=['any'],
install_requires=[
'numpy',
'cython==0.29.28',
'pytest',
'myst-nb',
'sphinx_rtd_theme',
'sphinx-copybutton',
'sphinx-autoapi',
'numpydoc',
# 'python-poetry',
'gitpython',
#'sphinxcontrib-collections @ git+https://github.com/anugrahjo/sphinx-collections.git', # 'sphinx-collections',
'sphinxcontrib-bibtex',
'setuptools',
'wheel',
'twine',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Software Development',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
],
)