-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (26 loc) · 994 Bytes
/
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
"""The setup script."""
import setuptools
from regression_analysis import __version__
__author__ = "Amandine Kaiser, Anthony Val Camposano, Harish Pruthviraj Jain"
__contact__ = "[email protected]"
__license__ = "Apache licence"
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name="Regression Analysis and Resampling Methods",
version=__version__,
author=__author__,
author_email=__contact__,
license=__license__,
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/am-kaiser/CompSci-Project-1.git",
packages=setuptools.find_packages(include=["regression_analysis", "regression_analysis.*"]),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Natural Language :: English',
],
python_requires='>=3.9',
)