-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
47 lines (43 loc) · 1.25 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
43
44
45
46
47
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open(os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"app",
"VERSION"
),
"r", encoding = "utf-8"
) as inp:
v = inp.read().strip().split(' ')
VERSION = v[1]
setuptools.setup(
name = "forome_anfisa",
version = VERSION,
author = "Sergey Trifonov, with colleagues",
author_email = "trf@ya.ru",
description = "Variant Analysis and Curation Tool (Back-end, REST API and Internal Client)",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/ForomePlatform/anfisa",
packages = setuptools.find_packages(),
install_requires = [
'backports.statistics',
'bitarray',
'cachetools',
'enum34',
'export',
'forome_tools>=0.1.8',
'jsonpath_rw',
'openpyxl',
'pipreqs',
'Pygments',
'pymongo>=4.0.1',
'uWSGI>=2.0.17.1',
'wheel'
],
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"]
)