-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
56 lines (51 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import os.path
from setuptools import setup
readme = os.path.join(os.path.dirname(__file__), 'README.md')
with open(readme) as f:
long_description = f.read()
setup(
name='spy-cli',
version='0.5.0',
description='stream processing Python CLI',
packages=['spy', 'spy_plugins'],
zip_safe=True,
entry_points={
'console_scripts': [
'spy = spy.cli:main'
]
},
python_requires='>=3.4',
install_requires=[
'clize>=3.0',
],
extras_require={
'test': [
'pytest>=5.0',
'pytest-cov',
'coverage',
'lenses',
]
},
author='Ed Kellett',
author_email='e@kellett.im',
url='https://github.com/edk0/spy/',
project_urls={
'Documentation': 'https://spy.readthedocs.io/',
},
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities'
]
)