forked from onshape-public/apikey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 776 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'apikey',
'version': '1.0.0',
'description': 'Simple script to change colors of parts in a document',
'long_description': open('README.md').read(),
'author': 'Noa Flaherty',
'url': 'https://github.com/onshape/apikey/tree/master/python',
'license': open('LICENSE').read(),
'packages': [
'apikey'
],
'classifiers': [
'Programming Language :: Python',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules'
]
}
setup(**config)