-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
37 lines (35 loc) · 1.08 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
36
37
#!/usr/bin/env
from setuptools import setup, find_packages
from ghizmo import main
setup(
name="ghizmo",
version=main.VERSION,
python_requires='>=3',
packages=find_packages(),
author="Joshua Levy",
license="Apache 2",
url="https://github.com/jlevy/ghizmo",
# Pinning uritemplate dep; see https://github.com/sigmavirus24/github3.py/issues/634
install_requires=["github3.py>=1.0.0a4", "PyYAML>=3.12", "uritemplate.py==2.0.0"],
description=main.DESCRIPTION,
long_description=main.LONG_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
'Topic :: Software Development'
],
entry_points={
"console_scripts": [
"ghizmo = ghizmo.main:main",
],
},
)