-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
57 lines (49 loc) · 1.42 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
57
import codecs
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
REQUIREMENTS = [
'schematics',
'redis',
]
TEST_REQUIREMENTS = [
'flake8',
'mock',
'tox',
'pytest',
'pytest-cache',
'pytest-cover',
'pytest-sugar',
'pytest-xdist',
]
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
README = f.read()
setup(name='redis_schematics',
version='0.3.2.dev0',
description='Redis storage backend for schematics.',
long_description=README,
license='Apache License (2.0)',
author='Gabriela Surita',
author_email='[email protected]',
url='https://github.com/loggi/redis-schematics',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords=[
'loggi',
'schematics',
'redis',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
test_suite='tests',
tests_require=TEST_REQUIREMENTS+REQUIREMENTS)