-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
executable file
·34 lines (26 loc) · 1.15 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
#!/usr/bin/env python
# Copyright (c) Sunlight Labs, 2012 under the terms and conditions
# of the LICENSE file.
from sunlight import __appname__, __version__
from setuptools import setup
long_description = open('README.rst').read()
setup(
name = __appname__,
version = __version__,
packages = ['sunlight', 'sunlight.services'],
install_requires = ['clint'],
entry_points = {'console_scripts': ['sunlight = sunlight.cli:main']},
author = "Paul Tagliamonte",
author_email = "[email protected]",
long_description = long_description,
description = 'Unified Sunlight API bindings',
license = "BSD",
url = "https://github.com/sunlightlabs/python-sunlight",
platforms = ['any'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'],
)