forked from seibert-media/Highton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 975 Bytes
/
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
from setuptools import setup
setup(
name = 'Highton',
version = '1.2',
license = 'Apache License 2.0',
description = 'A Python library for Highrise',
long_description = 'A beautiful Python - Highrise - API. Less is more.',
url = 'https://github.com/seibert-media/Highton',
author = 'Michael Bykovski',
author_email = '[email protected]',
packages=['highton'],
install_requires = ['requests', 'lxml'],
keywords = 'bykof seibertmedia seibert media python api highrise highton',
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)