-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (36 loc) · 1.12 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
"""Measures of roughness for molecular property landscapes
"""
import versioneer
from setuptools import setup
# readme file
def readme():
with open('README.md') as f:
return f.read()
# -----
# Setup
# -----
setup(name='rogi',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Measures of roughness for molecular property landscapes',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
url='https://github.com/coleygroup/rogi',
author='Matteo Aldeghi',
author_email='[email protected]',
license='MIT',
packages=['rogi'],
package_dir={'': 'src'},
zip_safe=False,
tests_require=['pytest'],
install_requires=['numpy', 'scipy>=1.4', 'fastcluster', 'pandas', 'scikit-learn>=1'],
python_requires=">=3.7",
ext_modules=[]
)