-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (32 loc) · 1.05 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
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Strongly inspired (copied :D) from:
# http://jacobian.org/writing/django-apps-with-buildout/
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-shortim',
version='0.2',
url='http://github.com/valvim/django-shortim',
license='GPLv3',
description=('Django application for creating short URLs. '
'This code is currently running on http://va.mu.'),
author='Arthur Furlan',
long_description = read('README'),
author_email='afurlan@valvim.com',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['setuptools'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
)