-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (53 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
###########################################################
# PyToxo
#
# A Python tool to calculate penetrance tables for
# high-order epistasis models
#
# Copyright 2021 Borja González Seoane
#
# Contact: borja.gseoane@udc.es
###########################################################
import setuptools
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
with open("requirements_with_gui.txt") as f:
requirements = f.read().splitlines()
version = "1.2"
setuptools.setup(
name="pytoxo",
version=version,
packages=["pytoxo", "pytoxo_cli", "pytoxo_gui"],
entry_points={
"console_scripts": [
"pytoxo_cli = pytoxo_cli.__main__:main",
"pytoxo_gui = pytoxo_gui.__main__:main",
],
},
python_requires=">=3.8",
install_requires=requirements,
data_files=[
("", ["requirements_with_gui.txt"]),
("", ["README.md"]),
("", ["LICENSE"]),
],
url="https://github.com/bglezseoane/pytoxo",
download_url=f"https://github.com/bglezseoane/pytoxo/archive/{version}.tar.gz",
license="LICENSE",
author="Borja González Seoane",
author_email="borja.gseoane@udc.es",
description="A Python tool to calculate penetrance tables for high-order epistasis models",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)