This repository was archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.29 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.29 KB
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 import __version__
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
setup(
name='tbone',
version=__version__,
description='Full-duplex RESTful APIs for asyncio web applications',
long_description= read('README.md'),
author="475 Cumulus Ltd.",
author_email='dev@475cumulus.com',
url='https://github.com/475Cumulus/TBone',
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',
],
)