forked from Suor/handy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 850 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
27
28
29
30
31
from setuptools import setup
setup(
name='handy',
version='0.1.1',
author='Alexander Schepanovski',
author_email='suor.web@gmail.com',
description='A collection of tools to make your django life easier.',
long_description=open('README.rst').read(),
url='http://github.com/Suor/handy',
license='BSD',
packages=['handy'],
install_requires=[
'django>=1.2',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)