-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (28 loc) · 768 Bytes
/
setup.py
File metadata and controls
37 lines (28 loc) · 768 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
def get_description():
import os
return ''.join(
file(
os.path.join(os.path.dirname(os.path.normpath(__file__)),
'README.md'
), 'r').readlines()
)
setup(
name='django-legacy',
version='0.1',
license='New BSD License',
author='Alex Koshelev',
author_email='daevaorn@gmail.com',
url='http://github.com/daevaorn/django-legacy/',
packages=[
'legacy',
],
description='`django-legacy` provides the smart way '
'to overwrite your legacy project urls',
long_description=get_description(),
classifiers=[
'Framework :: Django',
'License :: OSI Approved :: BSD License',
]
)