This repository was archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (47 loc) · 1.66 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (47 loc) · 1.66 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import sys
from setuptools import setup
__version__ = ''
with open('streak_client/__init__.py') as inp:
for line in inp:
if (line.startswith('__version__')):
exec(line.strip())
break
setup( name='streak_client',
version= __version__,
description='simple flat client class for streak.com api with helper objects',
long_description = 'Streak API Client in Python',
url='http://github.com/mehmetg/streak_client',
author='Mehmet Gerceker',
author_email='mehmetg@msn.com',
license='MIT',
packages=['streak_client'],
package_dir={'streak_client': 'streak_client'},
keywords=( 'streak', 'api'),
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
provides=[],
install_requires=[ 'requests' ],
#message_extractors={},
#entry_points = {
# 'console_scripts': [
# 'streak_client = streak_client.streak_client:main',
# 'streak_client%s = streak_client.streak_client:main' % sys.version_info[0],
# ],
# 'distutil.commands': [
# 'streak_client = streak_client:main'
# ],
#},
zip_safe=False,
test_suite = 'streak_client_tests',
#tests_require = [],
#test_loader = '',
)