-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 745 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open('requirements.txt') as fd :
INSTALL_REQUIRES = fd.readlines()
INSTALL_REQUIRES = [r.strip() for r in INSTALL_REQUIRES]
TEST_REQUIRES = ['pytest', 'coverage', 'pytest-cov']
setuptools.setup(
name='vectorrvnn',
version='0.1.0',
packages=setuptools.find_packages(),
license='MIT License',
long_description="""
Library for uncovering visual similarity
between vector elements. Includes both hand
written and learnt heuristics.
""",
dependency_links=['https://github.com/Vrroom/pathfinder_rasterizer/tarball/clipPathFix#egg=pathfinder_rasterizer-0.1.0'],
install_requires=INSTALL_REQUIRES,
extras_require={
'test': TEST_REQUIRES + INSTALL_REQUIRES,
},
)