-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·41 lines (31 loc) · 1.01 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
#!/usr/bin/env python
"""
Setup script for the dcapy module
Author: Matthew Black
"""
from setuptools import setup, find_packages
from os import path
this_dir = path.abspath(path.dirname(__file__))
with open(path.join(this_dir, "DESCRIPTION.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(name='dcapy',
version='0.1',
description='Decision Curve Analysis library',
long_description=long_description,
license='GPLv3+',
install_requires=[
'pandas',
'statsmodels'
],
author='Matthew Black',
author_email='[email protected]',
url='http://matt-black.github.io',
packages=find_packages(exclude=['test']),
keywords='statistics analysis',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics'
]
)