-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
47 lines (43 loc) · 1.19 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
import sys
if sys.version_info < (3,6):
sys.exit('Sorry, Python < 3.6 is not supported')
import os
from setuptools import setup
from devml import __version__
if os.path.exists('README.md'):
LONG = open('README.md').read()
else:
LONG = ''
setup(
name='devml',
version=__version__,
url='https://github.com/noahgift/devml',
license='MIT',
author='Noah Gift',
author_email='consulting@noahgift.com',
description="""Machine Learning, Statistics and Utilities around Developer Productivity,
Company Productivity and Project Productivity""",
long_description=LONG,
packages=['devml'],
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'pandas',
'click',
'PyGithub',
'gitpython',
'sensible',
'scipy',
'numpy',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
],
scripts=["dml"],
)