-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.16 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
36
#!/usr/bin/env python
"""
Installation script:
To release a new version to PyPi:
- Ensure the version is correctly set in django_blakey_utils.__init__.py
- Run: python setup.py sdist upload
"""
from setuptools import setup, find_packages
from django_blakey_utils import get_version
setup(name='django-blakey-utils',
version=get_version().replace(' ', '-'),
url='https://github.com/tangentlabs/django-blakey-utils',
author="Tangent Labs",
author_email="[email protected]",
description="Common utilities for Blakey project",
long_description=open('README.rst').read(),
keywords="Utilities, Blakey",
license='BSD',
platforms=['linux'],
packages=find_packages(exclude=["*.tests"]),
install_requires=[
'Django==1.4.1',
'django-tastypie==0.9.11',
'simplejson>=2.2.1'
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python']
)