-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (56 loc) · 1.71 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
#!/usr/bin/env python
"""Compute a dependency graph between active Python eggs.
"""
from setuptools import setup, find_packages
longdesc = "\n\n".join((open("README.rst").read(),
open("ABOUT.rst").read()))
entry_points = {
"console_scripts": [
"eggdeps = tl.eggdeps.cli:eggdeps",
],
}
install_requires = [
"setuptools",
]
tests_require = [
"zope.testing",
]
extras_require = {
"test": tests_require,
}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Zope Public License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development",
"Topic :: Utilities",
]
setup(name="tl.eggdeps",
version='1.1.dev0',
description=__doc__.strip(),
long_description=longdesc,
keywords="egg eggs dependencies dependency graph tree",
classifiers=classifiers,
author="Thomas Lotze",
author_email="[email protected]",
url="https://github.com/tlotze/tl.eggdeps",
license="ZPL 2.1",
packages=find_packages('src'),
package_dir={'': 'src'},
entry_points=entry_points,
python_requires='>=3.7, <4',
install_requires=install_requires,
extras_require=extras_require,
tests_require=tests_require,
include_package_data=True,
test_suite="tl.eggdeps.tests.test_suite",
namespace_packages=["tl"],
zip_safe=False,
)