-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (30 loc) · 1.1 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
from setuptools import setup, find_packages
version = "0.4.3"
def readme():
with open("README.rst") as f:
return f.read()
setup(
name="pyz",
version=version,
description="Packages all source code and dependencies into a single Python zip application.",
long_description=readme(),
author="Bradley Odell",
author_email="[email protected]",
url="https://github.com/BTOdell/pyz",
download_url="https://github.com/BTOdell/pyz/archive/{0}.tar.gz".format(version),
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools"
],
license="GPLv3",
keywords="pyz zip app zipapp bundle dependencies library"
)