-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (32 loc) · 949 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
30
31
32
33
34
35
36
37
38
39
40
41
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
extra_files = package_files('datascryer')
setup(
version="0.0.4",
name="DataScryer",
description="DataScryer - Framework to predict future performancedata.",
author="Philip Griesbacher",
author_email="[email protected]",
url="https://github.com/Griesbacher/dataScryer",
packages=["datascryer"],
package_data={'': extra_files},
scripts=['bin/dataScryer.py'],
license="GPLv3",
install_requires=[
'requests',
],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
zip_safe=True
)