1 Star 0 Fork 3

hayeszhou/SyntheticControlMethods

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
OscarEngelbrektson 提交于 2021-03-17 17:23 . Update documentation
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',
'cvxpy',
'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'
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hayeszhou/SyntheticControlMethods.git
[email protected]:hayeszhou/SyntheticControlMethods.git
hayeszhou
SyntheticControlMethods
SyntheticControlMethods
master

搜索帮助