-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 847 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
32
33
from distutils.core import setup
setup(
name='django-sape',
description='Django + sape.ru.',
version='0.2.4',
packages=\
[
'sape',
'sape.management',
'sape.management.commands',
'sape.templatetags',
],
author='Dimmma',
author_email='https://github.com/Dimmma',
maintainer='Mikhail Fedosov',
maintainer_email='[email protected]',
url='http://github.com/fedosov/sape',
keywords=['Django', 'sape', 'sape.ru', ],
#install_requires=['mechanize']
classifiers=
[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)