-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
29 lines (27 loc) · 882 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
from setuptools import setup, find_packages
version = '0.1.0'
setup(
name='django-celery-progress',
version=version,
description='',
#long_description=open('README.md').read(),
author='Rob Golding',
author_email='[email protected]',
license='BSD',
url='https://github.com/robgolding63/django-celery-progress',
download_url=(
'https://github.com/robgolding63/django-celery-progress/downloads'),
packages=find_packages(),
include_package_data=True,
install_requires=[
'celery',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Programming Language :: Python',
'Operating System :: OS Independent',
],
)