-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (32 loc) · 1.16 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
from os.path import dirname, join
from setuptools import find_packages, setup
package_name = "crest"
def read(path):
with open(join(dirname(__file__), path)) as f:
return f.read()
setup(name=package_name,
version='0.0.1',
description='CLI to access RESTful service',
long_description=read("README.rst"),
url="https://github.com/manishtomar/crest",
author='Manish Tomar',
author_email='manish.tomar@gmail.com',
maintainer='Manish Tomar',
maintainer_email='manish.tomar@gmail.com',
entry_points={'console_scripts': ['crest = crest.cli:main']},
license='MIT',
keywords="restful cli",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 2 :: Only",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP"
],
packages=find_packages(),
install_requires=['requests']
)