-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (27 loc) · 891 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
29
30
from setuptools import find_packages, setup
install_requires = [
"pyramid >= 1.9.0",
"nameko == 2.12.0",
]
setup(
name='oriole-api',
version='5.0.0',
description='Code for oriole-webapi.',
long_description=open('README.rst').read(),
author='Eric.Zhou',
author_email='[email protected]',
url='https://github.com/zhouxiaoxiang/oriole-test',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
])