-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
54 lines (45 loc) · 1.27 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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.3.3.dev0'
setup(
name="tasa",
version=version,
description="A simple framework for distributed task workflow using redis.",
long_description=open("README.rst").read(),
url='https://github.com/PaulMcMillan/tasa',
license="Simplified BSD",
author="Paul McMillan",
author_email="paul@mcmillan.ws",
entry_points={
'console_scripts': [
'tasa = tasa.cli:run',
'tasam = tasa.cli:runm',
'tasa-log = tasa.cli:log',
],
},
install_requires=[
"redis",
],
extras_require={
"tests": [
"pep8",
"pylint",
"pytest",
"pytest-cov",
],
},
tests_require=[
"pep8",
"pytest",
"pytest-cov",
],
packages=find_packages(),
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
])