forked from politeauthority/docker-pretty-ps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 740 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
"""
Builds packages so that each package can be imported (and allow relative imports)
"""
import dockerprettyps
import setuptools
setuptools.setup(
name="docker-pretty-ps",
version=dockerprettyps.__version__,
author="politeauthority",
author_email="fullteronalix0@gmail.com",
url="https://github.com/politeauthority/docker-pretty-ps",
download_url="https://github.com/politeauthority/docker-pretty-ps/archive/v0.0.1-alpha.zip",
packages=setuptools.find_packages(),
scripts=['dockerprettyps/bin/docker-pretty-ps'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)