-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (48 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (48 loc) · 1.55 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
49
50
51
52
53
54
import io
import os
from setuptools import find_packages, setup
__version__ = '0.6.0'
def read_from(file):
reply = []
with io.open(os.path.join(here, file), encoding='utf8') as f:
for line in f:
line = line.strip()
if not line:
break
if line[:2] == '-r':
reply += read_from(line.split(' ')[1])
continue
if line[0] != '#' or line[:2] != '//':
reply.append(line)
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='support@battlehouse.com',
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]
''',
)