forked from erikrose/peep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.37 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
38
39
import sys
from setuptools import setup, find_packages
setup(
name='peep',
version='2.0',
description='A "pip install" that is cryptographically guaranteed repeatable',
long_description=open('README.rst').read(),
author='Erik Rose',
author_email='grinch@grinchcentral.com',
license='MIT',
py_modules=['peep'],
entry_points={
'console_scripts': ['peep = peep:main',
'peep-%s.%s = peep:main' % sys.version_info[:2]]
},
url='https://github.com/erikrose/peep',
include_package_data=True,
# No dependencies are declared for peep, even though it requires pip.
# install_requires=['pip>=0.6.2'],
tests_require=['nose>=1.3.0,<2.0'],
test_suite='nose.collector',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration'
],
keywords=['pip', 'secure', 'repeatable', 'deploy', 'deployment', 'hash',
'install', 'installer']
)