forked from volterra-luo/django-oss-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.02 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import storages.pkg_info
exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]
setup(
name = storages.pkg_info.package,
version = storages.pkg_info.version,
packages = find_packages(exclude),
author = 'volterra-luo',
author_email = '[email protected]',
url = storages.pkg_info.url,
description = storages.pkg_info.short_description,
long_description = open('README.md').read(),
license = storages.pkg_info.license,
requires = [
'Django',
'python-dateutil>=2.2',
],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Installation/Setup'
],
zip_safe = False
test_suite = 'tests.main'
)