-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 853 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
31
from setuptools import find_packages, setup
def read_file(file):
with open(file) as fin:
return fin.read()
setup(
name="elaspic2_rest_api",
version="0.1.12",
description="ELASPIC v2 web server",
long_description=read_file("README.md"),
author="Alexey Strokach",
author_email="alex.strokach@utoronto.ca",
url="https://gitlab.com/elaspic/elaspic2-rest-api",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={},
include_package_data=True,
zip_safe=True,
keywords="elaspic2_rest_api",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
test_suite="tests",
)