forked from delton137/mmltoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 780 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
from setuptools import setup
from setuptools import find_packages
__version__ = '0.1.0'
setup(name='mmltoolkit',
version='0.1.0',
description='Library for molecular featurizations and utility functions for machine learning with molecules',
author='Daniel C. Elton',
author_email='[email protected]',
url='https://github.com/delton137/mmltoolkit',
include_package_data=True,
classifiers=[
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research'
],
license='MIT',
install_requires=['numpy', 'matplotlib', 'scikit-learn'],
packages=find_packages(),
zip_safe=False)