-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (21 loc) · 904 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
#!/usr/bin/env python
"""
To create a package, svn export from the tag version you would like to create the package from to
a folder named django_logger next to this setup.py file and change the version below to be the new version
Then, to build an egg, type the following command:
::
python setup.py bdist_egg
Then, create the tar.gz file (please chang the name of the file to your version):
::
tar -cvzf django_logger-0.1-py2.6.tar.gz *
Don't forget to add the .tar.gz file to svn at https://zeppelin.proteus-tech.com/repos/projects/logger/packages
"""
from setuptools import setup
setup(
name='django-logger',
version='0.1',
description='Logger to be used with Django',
author='Proteus Technologies Co. Ltd.',
author_email='team@proteus-tech.com',
url='https://zeppelin.proteus-tech.com/repos/projects/logger/',
packages=['django_logger'])