-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
37 lines (34 loc) · 1.07 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
37
#!/bin/env python
import os
from setuptools import setup
name = 'django-transfer'
version = '0.4'
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(readme) as readme_file:
long_description = readme_file.read()
setup(
name = name,
version = version,
description = 'A django application that offloads file transfers to a downstream proxy.',
long_description = long_description,
author = 'SmartFile',
author_email = '[email protected]',
maintainer = 'Travis Cunningham',
maintainer_email = '[email protected]',
url = 'http://github.com/smartfile/' + name + '/',
license = 'MIT',
install_requires = [
"six>=1.9.0",
],
packages = [
"django_transfer",
],
classifiers = (
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)