-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
66 lines (64 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = ''.join(f.readlines())
setup(
name='labelord_suchama4',
version='0.4',
keywords='github labels management replication',
description='Simple CLI and WEB tools for managing GitHub labels',
long_description=long_description,
author='Marek Suchánek',
author_email='[email protected]',
license='MIT',
url='https://github.com/MarekSuchanek/labelord',
zip_safe=False,
packages=find_packages(),
package_data={
'labelord': [
'static/*.js',
'static/*.css',
'templates/*.html',
]
},
entry_points={
'console_scripts': [
'labelord = labelord:main',
]
},
install_requires=[
'configparser',
'click',
'Flask',
'requests',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'betamax',
'betamax-serializers',
'flexmock',
'pytest',
'pytest-flake8',
'pytest-sugar',
'pytest-cov',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
'Topic :: Utilities',
],
)