-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.04 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
import sys
from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read()
reqs = [x.strip() for x in open('requirements.txt').readlines()]
test_reqs = [x.strip() for x in open('requirements-tests.txt').readlines()]
if sys.version_info >= (3, 7):
reqs = [x for x in reqs if not x.rstrip().startswith('dataclasses')]
setup(
name='xrpc',
version='0.0.5',
author='Andrey Cizov',
author_email='[email protected]',
packages=find_packages(include=('xrpc', 'xrpc.*',)),
description='Python 3 RPC framework',
keywords='',
url='https://github.com/andreycizov/python-xrpc',
include_package_data=True,
long_description=readme,
install_requires=reqs,
test_suite='xrpc_tests',
tests_require=test_reqs,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
]
)