-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.46 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.46 KB
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
43
#!/usr/bin/env python
from setuptools import setup, find_packages
app_name = 'beanstalk-api'
authors = 'Spencer Herzberg'
author_email = 'spencer.herzberg@gmail.com'
version = '1b'
release = version
description = 'This is an implementation of the Beanstalk VCS API in Python'
long_description = '''This api will allow you to manage your beanstalk vcs.
All requests are made with simple json. The results for api requests are
turned into simple dictionaries for maximum flexibility.'''
url = 'https://github.com/whelmingbytes/python-beanstalk-api'
setup(
name=app_name,
version=version,
packages=find_packages(),
install_requires=['requests==1.1.0', 'nose==1.2.1', 'mock==1.0.1'],
include_package_data=True,
author=authors,
author_email=author_email,
description=description,
long_description=long_description,
license="GPL",
keywords="vcs beanstalk",
classifiers=[
'Development Status :: 1',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms=['any'],
url=url,
download_url=url,
)