-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (37 loc) · 1.22 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
40
41
42
import os
from setuptools import setup, find_packages
from distutils.core import setup
from pigeon_droppings import __version__
import pigeon_droppings
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = []
setup(
name="Pigeon Droppings",
version=".".join(map(str, __version__)),
description="Utility that gets the DNS names of your aws EC2 instances based on the name you supply",
long_description=read('README.rst'),
url='https://github.com/jujhars13/pigeon-droppings',
license='MIT',
author='Jujhar Singh',
author_email='[email protected]',
keywords="aws ec2",
packages=find_packages(exclude=['tests']),
include_package_data=True,
entry_points={
'console_scripts': [
'pd = pigeon_droppings.__main__:main'
],
},
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
install_requires=requirements,
tests_require=[],
)