-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
53 lines (51 loc) · 1.45 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
48
49
50
51
52
53
""" habitipy - tools and library for Habitica restful API"""
import sys
from setuptools import setup
INSTALL_REQUIRES = [
'plumbum',
'requests',
'setuptools',
]
if sys.version_info < (3, 5):
INSTALL_REQUIRES.append('typing')
setup(
name='habitipy',
version='0.3.3',
author='Pavel Pletenev',
author_email='[email protected]',
url='https://github.com/ASMfreaK/habitipy',
license='MIT',
description='tools and library for Habitica restful API (http://habitica.com)',
packages=['habitipy'],
install_requires=INSTALL_REQUIRES,
package_data={
'habitipy': [
'apidoc.txt',
'*.pyi',
'i18n/*/LC_MESSAGES/*.mo'
]
},
entry_points={
'console_scripts': [
'habitipy = habitipy.cli:HabiticaCli',
],
},
extras_require={
'emoji': ['emoji'],
'aio': ['aiohttp']
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Topic :: Games/Entertainment',
'Topic :: Internet',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
],
)