-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 848 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
30
"""Create instructions to build cryo-Bife's path optimization version."""
import setuptools
requirements = []
setuptools.setup(
name="cryoBIFE",
maintainer=[
"David Silva-Sánchez",
"Julian David Giraldo-Barreto",
"Erik Henning Thiede",
"Pilar Cossio",
"Sonya Hanson",
],
version="0.0.1",
maintainer_email=[
],
description="Path optimization using CryoBIFE",
long_description=open("README.md", encoding="utf8").read(),
long_description_content_type="text/markdown",
url="https://github.com/DSilva27/cryo_bife_MD.git",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
zip_safe=False,
)