-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.12 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.12 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
import os
from setuptools import setup, find_packages
exec open ("pyver/__init__.py")
setup (
name = "pyver",
version = __version__,
description = "Git-based versioning for Python tools and modules.",
long_description = file ("README.rst").read (),
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
+ "GNU General Public License v3 or later (GPLv3+)",
"Topic :: Utilities",
],
keywords = "version semver git",
author = "J C Lawrence",
author_email = "claw@kanga.nu",
url = "https://github.com/clearclaw/pyver",
download_url = ("https://github.com/clearclaw/pyver/tarball/%s.%s"
% (__version_info__[0], __version_info__[1])),
license = "LGPL v3",
packages = find_packages (exclude = ["tests",]),
package_data = {
},
zip_safe = False,
install_requires = [line.strip ()
for line in file ("requirements.txt").readlines ()],
entry_points = {
"console_scripts": [
"pyver_install = pyver.main:main",
],
},
)