-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (58 loc) · 1.49 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
58
59
60
61
62
63
64
65
66
67
68
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
version = '0.1'
install_requires = [
'setuptools',
'portalocker >= 2.0',
]
yaml_requires = [
'PyYAML >= 5.3',
]
rapidjson_requires = [
'python-rapidjson >= 0.9.0',
]
msgpack_requires = [
'msgpack-python >= 0.5.0',
]
bson_requires = [
'bson >= 0.5.10',
]
tests_require = [
*yaml_requires,
*rapidjson_requires,
*msgpack_requires,
*bson_requires,
'pytz',
'pytest',
]
setup(name='cromlech.marshallers',
version=version,
description="A collection of data marshallers for various generic uses",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Programming Language :: Python",
],
keywords='Cromlech',
author='The Cromlecch Team',
author_email='[email protected]',
url='https://github.com/Cromlech',
license='ZPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['cromlech'],
include_package_data=True,
extras_require={
'test': tests_require,
'yaml': yaml_requires,
'rapidjson': rapidjson_requires,
'msgpack': msgpack_requires,
'bson': bson_requires,
},
zip_safe=False,
install_requires=install_requires,
entry_points="""
# -*- Entry points: -*-
""",
)