-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 842 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
from setuptools import setup
long_description = open("README.md").read()
setup(
name='insilico',
version='0.1.2',
description='A Python package to process & model ChEMBL data.',
long_description_content_type="text/markdown",
long_description=long_description,
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Chemistry',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python'
],
url='https://github.com/konstanzer/insilico',
author='Steven Newton',
author_email='[email protected]',
license='MIT',
packages=['insilico'],
install_requires=[],
include_package_data=True,
package_data={
'insilico': ['fingerprints_xml/*', 'data/empty.txt'],
},
zip_safe=False
)