-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 883 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
from distutils.core import setup
setup(
name = 'tolliver',
packages = ['tolliver'],
version = '0.1b',
description = 'An application for dialing in CNC hole tolerances',
author = 'CastIrony',
author_email = 'bergamot@gmail.com',
url = 'https://github.com/castirony/tolliver',
license = 'MIT',
download_url = 'https://github.com/castirony/tolliver/tarball/0.1b',
keywords = ['cnc', 'tolerance'],
requires = ['docopt', 'cerberus', 'ezdxf'],
classifiers = ["Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
],
)