-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 673 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 673 Bytes
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
install_requires = [
'setuptools',
'numpy',
'pandas',
'requests',
'openpyxl',
'seaborn'
]
dependency_links = [
]
setup(name='betalytics',
version=0.3,
description='DataScience Framework For Betting Analytics',
author='',
author_email='',
url='https://github.com/sashml/betalytics',
packages=find_packages(),
install_requires=install_requires,
dependency_links=dependency_links,
package_data={'': ['*.yaml']},
entry_points={
'console_scripts':
[
],
},
)