-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (45 loc) · 1.29 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md') as file:
long_description = "Update a file on github"
setup(
name='push-github',
version='0.0.1',
url='https://github.com/jasonmlkang/push-github',
description='Update a file on github',
author='Jason Min-Liang Kang',
license='MIT',
py_modules=['push_github'],
long_description=long_description,
install_requires=['requests==2.7.0'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points="""
[console_scripts]
pushgithub = push_github:run
""",
options={
'bdist_rpm':{
'build_requires':[
'python',
'python-setuptools',
'requests'
],
'requires':[
'python',
'python-setuptools',
'requests'
],
},
},
)