forked from FlorianLudwig/nginc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 644 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
setuptools.setup(
name='nginc',
version='0.0.3',
description='run nginx from the commandline',
author='Florian Ludwig',
author_email='f.ludwig@greyrook.com',
install_requires=['setuptools'],
packages=['nginc'],
package_data={'nginc': ['*.conf']},
entry_points={
'console_scripts': [
'nginc = nginc:main',
],
},
url='https://github.com/FlorianLudwig/nginc',
license="http://www.apache.org/licenses/LICENSE-2.0",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
)