-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.3 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
#!/usr/bin/env python
# encoding: utf-8
import os
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
from tbone_auth import __version__
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
setup(
name='tbone_auth',
version=__version__,
description='Authentication mechanism for TBone based wep apps',
long_description= '', #read('README'),
author="475 Cumulus Ltd.",
author_email='[email protected]',
url='https://github.com/475Cumulus/tbone-auth',
license='MIT',
python_requires='>=3.5.0',
packages=find_packages(),
install_requires=[i.strip() for i in open("requirements.txt").readlines()],
tests_require=[],
classifiers=[
'Environment :: Web Environment',
'Framework :: AsyncIO',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Internet :: WWW/HTTP',
],
)