-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (37 loc) · 1.2 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
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests.settings'
setup(
name = 'django-sampledatahelper',
version = "0.5.0",
description = "Helper class for generate sampledata",
long_description = "",
keywords = 'django, data, example',
author = 'Jesús Espino García',
author_email = '[email protected]',
url = 'https://github.com/kaleidos/django-sampledatahelper',
license = 'BSD',
include_package_data = True,
packages = find_packages(exclude=['tests']),
package_data={
'sampledatahelper': ['static/*', 'l10n/names/*',]
},
install_requires=[
'django >= 2.0.0',
'sampledata',
],
test_suite = 'nose.collector',
tests_require = ['nose >= 1.3.0', 'django >= 2.0.0', 'six'],
classifiers = [
"Programming Language :: Python",
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)