-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.73 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (43 loc) · 1.73 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
45
46
47
48
#!/usr/bin/env python
import os
from setuptools import setup
def _read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
REQUIREMENTS = [l for l in _read('requirements.txt').split('\n') if l and not l.startswith('#')]
VERSION = '0.1.0'
setup(
name='bottle-tinyrpc',
version=VERSION,
url='https://github.com/cope-systems/bottle-tinyrpc',
#download_url='https://github.com/cope-systems/bottle-tinyrpc/archive/v{}.tar.gz'.format(VERSION),
description='TinyRPC Integration for the Bottle Web Framework',
long_description=_read("README.md"),
author='Robert Cope',
author_email='robert@copesystems.com',
license='MIT',
platforms='any',
packages=["bottle_tinyrpc"],
install_requires=REQUIREMENTS,
tests_require=REQUIREMENTS + ["pytest", "webtest"],
classifiers=[
'Environment :: Web Environment',
'Environment :: Plugins',
'Framework :: Bottle',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
include_package_data=True
)