forked from reubano/meza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (64 loc) · 2.35 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
#!/usr/bin/env python
import sys
import pkutils
from os import path as p
from setuptools import setup, find_packages
PARENT_DIR = p.abspath(p.dirname(__file__))
sys.dont_write_bytecode = True
requirements = list(pkutils.parse_requirements("requirements.txt"))
dev_requirements = list(pkutils.parse_requirements("dev-requirements.txt"))
readme = pkutils.read("README.rst")
changes = pkutils.read(p.join(PARENT_DIR, "docs", "CHANGES.rst"))
module = pkutils.parse_module(p.join(PARENT_DIR, "meza", "__init__.py"))
license = module.__license__
version = module.__version__
project = module.__title__
description = module.__description__
user = "reubano"
# Setup requirements
setup_require = [r for r in dev_requirements if "pkutils" in r]
setup(
name=project,
version=version,
description=description,
long_description="{}\n\n{}".format(readme, changes),
author=module.__author__,
author_email=module.__email__,
url=pkutils.get_url(project, user),
download_url=pkutils.get_dl_url(project, user, version),
packages=find_packages(exclude=["docs", "tests"]),
include_package_data=True,
package_data={
"data": ["data/*"],
"helpers": ["helpers/*"],
"tests": ["tests/*"],
"docs": ["docs/*"],
"examples": ["examples/*"],
},
install_requires=requirements,
setup_requires=setup_require,
test_suite="nose.collector",
tests_require=dev_requirements,
license=license,
zip_safe=False,
keywords=[project] + description.split(" "),
classifiers=[
pkutils.get_license(license),
pkutils.get_status(version),
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Environment :: Console",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
platforms=["MacOS X", "Windows", "Linux"],
)