-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.1 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.1 KB
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
"""__doc__"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'version': '0.1',
'description': 'Datamining portálu EKS',
'author': 'Tomas Horvath',
'url': 'https://github.com/TomasHo/EKS.git',
'download_url': 'https://github.com/TomasHo/EKS.git',
'author_email': '[email protected]',
'install_requires': ['nose', 'bs4>=0.0.1','json','re', 'datetime', 'urllib', 'configparser', 'time'],
'packages': ['EKS'],
'scripts': [],
'name': 'EKS',
'long_description': __doc__,
'classifiers': [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: LINUX',
'Programming Language :: Python',
# Replace these appropriately if you are stuck on Python 2.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
}
setup(**config)