forked from BrooksResearchGroup-UM/FastMBAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 807 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
from setuptools import setup, find_packages
with open("README.rst", 'r') as file_handle:
long_description = file_handle.read()
setup(
name = "FastMBAR",
version = "0.1.0",
author = "Xinqiang Ding",
author_email = "[email protected]",
description = "A fast solver for large scale MBAR/UWHAM equations",
long_description = long_description,
long_description_content_type = "text/x-rst",
url = "https://github.com/xqding/FastMBAR",
packages = find_packages(),
install_requires=['numpy>=1.14.0',
'scipy>=1.1.0',
'torch>=1.0.0'],
license = 'MIT',
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)