-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 762 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 762 Bytes
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
from setuptools import setup
setup(
name="reprise",
version="0.1.0",
packages=[
"reprise",
],
test_suite="reprise",
install_requires={
"docopt",
},
entry_points={
"console_scripts": [
"reprise = reprise.__main__:main",
],
},
data_files=[
("share/man/man1", ["debian/reprise.1"]),
],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: System :: Archiving :: Packaging",
],
)