-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (27 loc) · 983 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import gerrit
if __name__ == "__main__":
setup(
name='gerrit.py',
version=gerrit.__version__,
description='A Python Wrapper for the Gerrit REST API',
long_description=open('README.md').read(),
author='Huang Yaming',
author_email='[email protected]',
url='https://github.com/yumminhuang/gerrit.py',
packages=[
'gerrit',
],
license=open('LICENSE').read(),
install_requires=['requests'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)