-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (28 loc) · 1011 Bytes
/
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
from setuptools import setup, find_packages
import sys, os
version = '0.4.1'
long_description = open("README.rst").read()
setup(name='pychembldb',
version=version,
description="ChEMBLdb interface for Python",
long_description=long_description,
long_description_content_type="text/x-rst",
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Chemistry',
'Development Status :: 2 - Pre-Alpha',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python'
],
keywords='chemoinformatics cheminformatics',
author='Ohkawa Kazufumi',
author_email='[email protected]',
url='http://github.com/kzfm/pychembldb',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"SQLAlchemy >= 0.8.0b2"
])