forked from benjiec/pychemy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (47 loc) · 1.65 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='pychemy',
version='0.5.0',
author='Benjie Chen, Ginkgo Bioworks, Christoph Gohlke',
description='Helpers for handling chemical formulas in Python',
long_description=open('README.rst').read(),
url='https://github.com/ginkgobioworks/pychemy',
license='MIT',
keywords='chemistry mass spectrometry chemoinformatics analysis molecular',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Artificial Life',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4',
packages=['pychemy'],
include_package_data=True,
zip_safe=True,
install_requires=[
'matplotlib',
'networkx~=1.0',
'numpy',
'openbabel',
],
tests_require=[
'tox',
'nose',
'coverage',
],
)