forked from sbaker-dev/kdaHDFE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (45 loc) · 1.38 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
# Copyright (C) 2021 Samuel Baker
def readme():
with open('README.md') as f:
return f.read()
DESCRIPTION = "High Dimensional Fixed effect modeling for genetic analysis"
LONG_DESCRIPTION_CONTENT_TYPE = "text/markdown"
DISTNAME = 'kdaHDFE'
MAINTAINER = 'Samuel Baker'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'MIT'
DOWNLOAD_URL = "https://github.com/sbaker-dev/kdaHDFE"
VERSION = "0.06.0"
PYTHON_REQUIRES = ">=3.6"
INSTALL_REQUIRES = [
]
PACKAGES = [
"kdaHDFE",
]
CLASSIFIERS = [
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
]
if __name__ == "__main__":
from setuptools import setup, find_packages
import sys
if sys.version_info[:2] < (3, 7):
raise RuntimeError("kdaHDFE requires python >= 3.7.")
setup(
name=DISTNAME,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=readme(),
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
license=LICENSE,
version=VERSION,
download_url=DOWNLOAD_URL,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
classifiers=CLASSIFIERS
)