-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
25 lines (24 loc) · 877 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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = "postgresql_sequence_utils",
version = '0.1',#remember to manually set this correctly
description = 'A django app with a management command that fixes sequences in Postgresql',
packages = find_packages(),
author = 'Evgeny.Fadeev',
author_email = '[email protected]',
license = 'MIT',
keywords = 'postgresql, django, utility',
include_package_data = True,
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)