-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.55 KB
/
setup.py
File metadata and controls
51 lines (46 loc) · 1.55 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
#!/usr/bin/env python
# pylint: disable=missing-module-docstring
# Template used:
# https://github.com/kennethreitz/setup.py
from setuptools import find_packages, setup
NAME = "ddionrails_datapackage"
DESCRIPTION = "Build and validate Tabular Data Packages for ddionrails studies"
URL = "https://github.com/paneldata/data-specification"
EMAIL = "hfuetterer@diw.de"
AUTHOR = "Heinz-Alexander Fütterer"
REQUIRES_PYTHON = ">=3.6.0"
VERSION = "0.2.0"
KEYWORDS = ["datapackage", "paneldata", "ddionrails", "data-validation", "jsonschema"]
LICENSE = "BSD 3-Clause"
CLASSIFIERS = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
REQUIRED = ["click>=7.0", "dpath", "frictionless", "pyyaml>=5.0"]
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=["tests"]),
package_data={
"ddionrails_datapackage": ["datapackage/*.yml", "datapackage/resources/*.yml"]
},
entry_points={
"console_scripts": ["ddionrails-datapackage=ddionrails_datapackage.cli:cli"]
},
install_requires=REQUIRED,
include_package_data=True,
license=LICENSE,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
)