forked from schematics/schematics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·56 lines (51 loc) · 1.9 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'schematics/__init__.py')) as f:
version = re.search(r"^__version__ = '(\d\.\d+\.\d+(\.?(dev|a|b|rc)\d?)?)'$",
f.read(), re.M).group(1)
setup(
name='schematics',
license='BSD',
version=version,
description='Python Data Structures for Humans',
author=u'James Dennis, Jökull Sólberg, Jóhann Þorvaldur Bergþórsson, Kalle Tuure, Paul Eipper',
author_email='[email protected], [email protected], [email protected], [email protected], [email protected]',
url='https://github.com/schematics/schematics',
download_url='https://github.com/schematics/schematics/archive/v%s.tar.gz' % version,
packages=['schematics', 'schematics.types', 'schematics.contrib', 'schematics.extensions'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.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',
'Programming Language :: Python :: 3.9',
],
install_requires=[],
package_data={
'schematics': ['locale/*/LC_MESSAGES/*.mo']
},
include_package_data=True,
setup_requires=[
'pytest-runner',
'mo_installer',
],
tests_require=[
'pytest',
'python-dateutil',
'pymongo',
'mock',
'coverage',
],
)