-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (37 loc) · 1.4 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
from setuptools import find_packages, setup
import io
import os
def get_install_requirements(path):
content = read(path)
return [req for req in content.split("\n") if req != "" and not req.startswith("#")]
def read(path, encoding="utf-8"):
path = os.path.join(os.path.dirname(__file__), path)
with io.open(path, encoding=encoding) as fp:
return fp.read()
setup(
name='hypothesize',
version='1.2.2',
description='A Python package for comparing groups and measuring associations using robust statistics.',
author='Allan Campopiano',
author_email="campopianoa@hcdsb.org",
license='BSD 3-clause',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url="https://github.com/Alcampopiano/hypothesize",
packages=find_packages(),
include_package_data=True,
install_requires=get_install_requirements("requirements.txt"),
python_requires=">=3.6",
tests_require=['pytest'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
],
)