-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (31 loc) · 975 Bytes
/
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
"""
A setuptools based setup module.
See:
- https://packaging.python.org/en/latest/distributing.html
- https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name="h800",
version="0.9",
description="H-800 Tools",
url="https://github.com/jimlawton/h800",
author="Jim Lawton",
author_email="[email protected]",
license="GPL v2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Environment :: Console",
"Operating System :: POSIX :: Linux"
],
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[]
)