-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (29 loc) · 906 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
def readme():
with open('README.md') as f:
return f.read()
def license():
with open('LICENSE') as f:
return f.read()
setup(name='ktcut',
version='0.1dev',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description='k-Terminal Cut Solver',
keywords='',
url='https://github.com/marvel2010/k-terminal-cut',
author='Mark Velednitsky',
author_email='[email protected]',
license=license(),
long_description=readme(),
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['numpy', 'networkx'],
setup_requires=['pytest-runner', ],
tests_require=['pytest', ],
zip_safe=False
)