-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (37 loc) · 1.23 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
# -*- coding: utf-8 -*-
# Copyright (c) 2018 by Alberto Vara <[email protected]>
import codecs
import os
from setuptools import setup, find_packages
version = __import__('project').__version__
author = __import__('project').__author__
author_email = __import__('project').__email__
if os.path.exists('README.rst'):
long_description = codecs.open('README.rst', 'r', 'utf-8').read()
else:
long_description = 'https://github.com/python-microservices/oauth'
setup(
name="Oauth MS",
version=version,
author=author,
author_email=author_email,
description="Oauth Python Miscroservice",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: GPL License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6"
],
license="GPL",
platforms=["any"],
keywords="python, microservices",
url='https://github.com/python-microservices/oauth',
packages=find_packages(),
zip_safe=True,
)