forked from raiden-network/raiden-pathfinding-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (45 loc) · 1.54 KB
/
setup.py
File metadata and controls
53 lines (45 loc) · 1.54 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
with open('README.rst') as readme_file:
readme = readme_file.read()
install_requires_replacements = {
'git+https://github.com/matrix-org/matrix-python-sdk.git': 'matrix-client',
'git+https://github.com/raiden-network/raiden-libs.git': 'raiden-libs',
}
requirements = list(set(
install_requires_replacements.get(requirement.strip(), requirement.strip())
for requirement in open('requirements.txt') if not requirement.lstrip().startswith('#')
))
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest', ]
setup(
author="Brainbot Labs Est.",
author_email='contact@brainbot.li',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
description="Pathfinding service for the Raiden Network",
entry_points={
'console_scripts': [
'pathfinder=pathfinder.cli:main',
],
},
install_requires=requirements,
long_description=readme,
include_package_data=True,
keywords='pathfinder',
name='pathfinder',
packages=find_packages(include=['pathfinder']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/raiden-network/raiden-pathfinding-service',
version='0.0.1',
zip_safe=False,
)