-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 1.26 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='githublabelscopy',
version='1.1.1',
description='A tool to copy labels between repositories using Github API',
url='http://github.com/fpietka/github-labels-copy',
author='François Pietka',
author_email='[email protected]',
license='MIT',
packages=['githublabelscopy'],
long_description=open('README.rst').read(),
install_requires=[
'PyGithub==1.34',
'docopt==0.6.2',
'PyYAML==3.12'
],
entry_points={
'console_scripts': [
'github-labels-copy = githublabelscopy.githublabelscopy:main'
],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
zip_safe=True)