forked from spinpunch/spin-py-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
import io
import os
from setuptools import find_packages, setup
__version__ = "0.5.1"
def read_from(file):
reply = []
with io.open(os.path.join(here, file), encoding='utf8') as f:
for l in f:
l = l.strip()
if not l:
break
if l[:2] == '-r':
reply += read_from(l.split(' ')[1])
continue
if l[0] != '#' or l[:2] != '//':
reply.append(l)
return reply
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf8') as f:
README = f.read()
setup(
name="spinlibs",
version=__version__,
packages=find_packages(),
description='SpinPunch Python utility libraries',
long_description=README,
classifiers=[
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: Implementation :: PyPy",
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
keywords='push webpush publication',
author="Battlehouse Inc.",
author_email="[email protected]",
url='https://github.com/spinpunch/spin-py-libs',
license="MIT",
include_package_data=True,
zip_safe=False,
install_requires=read_from('requirements.txt'),
#tests_require=read_from('test-requirements.txt'),
entry_points="""
[console_scripts]
""",
)