forked from rohanisaac/spc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 684 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
import spc
setup(name='spc',
version=spc.__version__,
description=spc.__doc__,
author=spc.__author__,
author_email=spc.__author_email__,
url='https://github.com/rohanisaac/spc',
packages=['spc'],
install_requires=['numpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Chemistry',
],
)