-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (40 loc) · 1.24 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
from setuptools import find_packages, setup
requirements = ["pandas", "scikit-learn", "plotly"]
dev_requirements = [
"black",
"isort",
"flake8",
"bumpversion",
"coverage",
"pytest",
"pytest-cov",
]
test_requirements = ["tox"]
jupyter_requirements = ["jupyter", "jupyterlab<4", "jupytext"]
setup(
name="synthetic-control",
version="0.0.5",
url="http://github.com/Bougeant/synthetic_control",
license_files=("LICENSE.txt",),
description=("A user friendly package to use the Synthetic Control Method"),
long_description=open("README.rst", "r").read(),
author="Olivier Bougeant",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
extras_require={
"dev": dev_requirements,
"test": test_requirements,
"jupyter": jupyter_requirements,
},
entry_points={"console_scripts": []},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)