-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (55 loc) · 1.85 KB
/
setup.py
File metadata and controls
67 lines (55 loc) · 1.85 KB
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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'datafaser', 'VERSION')) as f:
version = f.read().strip()
setup(
name='datafaser',
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version=version,
description='Data combiner and converter',
long_description=long_description,
url='https://github.com/korpiq/python-datafaser',
author='Kalle Hallivuori',
author_email='korpiq@iki.fi',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Interpreters',
'Topic :: Text Processing :: Markup',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='data conversion',
packages=find_packages(exclude=('test', 'test.*')),
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'jsonschema >= 2.5.1',
'PyYAML >= 3.11',
'jinja2 >= 2.6',
],
# $ pip install -e .[dev,test]
extras_require={
'dev': [],
'test': ['nose','nose-cov >= 1.6'],
},
tests_require=['nose'],
setup_requires=['wheel'],
package_data={
'datafaser': ['data/*'],
},
entry_points={
'console_scripts': [
'datafaser=datafaser.main:main',
],
},
test_suite = 'nose.collector',
)