-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 795 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
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
"numpy>=1.16",
"copulae>=0.5.2",
"scipy>=1.4.1",
"pandas>=1.0.3",
]
setup(
name="copula",
version="1.0.0",
author="VeniArakelian",
author_email="veniarakelian@yahoo.com",
download_url="https://github.com/veniarakelian/copula/archive/master.zip",
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
include_package_data=True,
license="MIT",
keywords=["copula"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
]
)