forked from blent-ai/pycopula
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
required = f.read().splitlines()
setup(name='pycopula',
version='0.1.5',
description='Python copulas library for dependency modeling',
author='Maxime Jumelle',
author_email='maxime@aipcloud.io',
license="Apache 2",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MaximeJumelle/pycopula/',
install_requires=required,
keywords='pycopula',
packages=find_packages(include=['pycopula', 'pycopula.*']),
)