-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (45 loc) · 1.65 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
from setuptools import setup, find_packages
from pathlib import Path
import re
with open("README.rst") as readme:
long_description = readme.read()
def get_version():
"""Get version number from __init__.py"""
version_file = Path(__file__).resolve().parent / "MalePedigreeToolbox" / "__init__.py"
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read_text(), re.M
)
if version_match:
return version_match.group(1)
raise RuntimeError("Failed to find version string")
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='male_pedigree_toolbox',
version=get_version(),
long_description=long_description,
packages=find_packages(),
url='https://github.com/genid/MalePedigreeToolbox.git',
license='MIT',
author='Bram van Wersch and Diego Montiel Gonzalez',
author_email='b.vanwersch@erasmusmc.nl',
description='tools for getting information from pedigress',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=required,
python_requires=">=3.6",
entry_points={
'console_scripts': [
'mpt=MalePedigreeToolbox.main:main',
'mpt_gui=MalePedigreeToolbox.gui.main_gui:mpt_gui'
],
},
include_package_data=True,
package_data={"MalePedigreeToolbox": ["generational_distance_prediction/models/*"]}
)