-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c01e46e
commit a4a827f
Showing
5 changed files
with
45 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
__pycache__/ | ||
.spyproject/ | ||
dist/ | ||
build/ | ||
*.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
README.md | ||
LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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.3.0', | ||
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==1.19.3', # 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>=1.0', | ||
'PyCifRW>=4.0' | ||
], | ||
python_requires = '>=3.6', | ||
) |