-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (32 loc) · 1.05 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
from setuptools import setup
long_description = "A Graphical User Interface for generating ChemKED files."
install_requires = ['Cerberus>=1.0.0,<1.2',
'pyked>=0.4.0',
'PyQt5>=5.10.1',]
python_requires = '>=3.5'
setup(
name='chemked_gui',
version='0.1.4',
url='https://github.com/mdbernard/ChemKED-gui',
license='BSD 3-Clause',
install_requires=install_requires,
python_requires=python_requires,
long_description=long_description,
packages=['chemked_gui'],
package_dir={'chemked_gui': 'chemked_gui'},
keywords=['chemical kinetics'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Chemistry',
],
entry_points={
'console_scripts': [
'chemked=chemked_gui:main'
],
},
)