-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
29 lines (25 loc) · 850 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
26
27
28
29
from setuptools import find_packages, setup
def read_md(file):
with open(file) as fin:
return fin.read()
setup(
name="proteinsolver",
version="0.1.25",
description="Learn to solve constraint satisfaction problems (CSPs) from data.",
long_description=read_md("README.md"),
author="Alexey Strokach",
author_email="[email protected]",
url="https://gitlab.com/ostrokach/proteinsolver",
packages=find_packages(exclude=["tests"]),
package_data={"proteinsolver": ["data/inputs/*.pdb"]},
include_package_data=True,
zip_safe=False,
keywords="proteinsolver",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
],
test_suite="tests",
)