-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (40 loc) · 1.32 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
42
import setuptools
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name="modelcraft",
version="5.0.1",
author="Paul Bond",
author_email="paul.bond@york.ac.uk",
description="Automated model building pipeline for X-ray crystallography",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/paulsbond/modelcraft",
packages=setuptools.find_packages(),
include_package_data=True,
license="LGPL-2.1",
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires="~=3.7",
install_requires=[
"gemmi >=0.5.5",
"numpy",
"pandas",
"requests",
"scipy",
],
entry_points={
"console_scripts": [
"modelcraft = modelcraft.scripts.modelcraft:main",
"modelcraft-contents = modelcraft.scripts.contents:main",
"modelcraft-copies = modelcraft.scripts.copies:main",
]
},
)