-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
56 lines (51 loc) · 1.77 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
from setuptools import setup, find_packages
import os
import re
import sys
from codecs import open
install_requires = [
'numpy>=1.17',
'scipy>=1.4.1',
'pandas>=1.1.2',
'cvxpy>=1.1.7',
'matplotlib>=2.2.3',
'jinja2>=2.10'
]
#Get version
here = os.path.abspath(os.path.dirname(__file__))
_version = {}
_version_path = os.path.join(here, 'SyntheticControlMethods', '__version__.py')
with open(_version_path, 'r', 'utf-8') as f:
exec(f.read(), _version)
#Get README.md for long description
with open('README.md', 'r', 'utf-8') as f:
readme = f.read()
setup(
name='SyntheticControlMethods',
version=_version['__version__'],
author='Oscar Engelbrektson',
author_email='[email protected]',
url='https://github.com/OscarEngelbrektson/SyntheticControlMethods',
download_url='https://github.com/OscarEngelbrektson/SyntheticControlMethods',
description= "A Python package for causal inference using various Synthetic Control Methods",
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
)