-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (57 loc) · 2.56 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
69
70
71
72
73
74
75
import codecs
import os
import re
from setuptools import setup, find_packages
###############################################################################
NAME = 'pathsjson'
PACKAGES = find_packages(where=".")
META_PATH = os.path.join("pathsjson", "__init__.py")
KEYWORDS = ["data analysis", "data science", "elt"]
CLASSIFIERS = ["Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: System :: Filesystems",
"Topic :: Utilities"]
INSTALL_REQUIRES = ['appdirs', 'jsonschema']
##############################################################################
SELF_DIR = os.path.abspath(os.path.dirname(__file__))
def read_file_safely(*path_parts):
with codecs.open(os.path.join(SELF_DIR, *path_parts), "rb", "utf-8") as f:
return f.read()
META_FILE = read_file_safely(META_PATH)
META_VARS_RE = re.compile(r"^__([_a-zA-Z0-9]+)__ = ['\"]([^'\"]*)['\"]", re.M)
META_VARS = dict(META_VARS_RE.findall(META_FILE))
###############################################################################
if __name__ == "__main__":
setup(
name=NAME,
description=META_VARS["description"],
license=META_VARS["license"],
url=META_VARS["uri"],
version=META_VARS["version"],
author=META_VARS["author"],
author_email=META_VARS["email"],
maintainer=META_VARS["author"],
maintainer_email=META_VARS["email"],
keywords=KEYWORDS,
long_description=read_file_safely("README.rst"),
packages=PACKAGES,
package_dir={"pathsjson": "pathsjson"},
package_data={"pathsjson": ["pathsjson/*.json"]},
entry_points={'console_scripts': ['pathsjson = pathsjson.cli:main']},
include_package_data=True,
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
)