-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.07 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
import setuptools
with open('README.md', 'r', encoding = 'utf-8') as inpf:
long_description = inpf.read()
setuptools.setup(
name = 'filter_los_csd',
version = '1.5.1',
author = 'Ivan Yu. Chernyshov',
author_email = '[email protected]',
description = 'CML tool filtering line-of-sights contacts',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/EPiCs-group/filter_los_csd',
packages = [],
scripts = ['bin/filter_los_csd.py'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Chemistry'
],
install_requires=[
'numpy', # TODO: remove restriction after fmod() fix: https://developercommunity.visualstudio.com/content/problem/1207405/fmod-after-an-update-to-windows-2004-is-causing-a.html
'pandas',
'PyCifRW>=4.0'
],
python_requires = '>=3.6',
)