-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.19 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.19 KB
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
from setuptools import setup, find_packages
with open('README.md') as readme, \
open('requirements.txt') as requirements, \
open('test_requirements.txt') as test_requirements:
setup(
setup_requires=['setuptools_scm'],
use_scm_version=True,
name="django_loaddata_stdin",
description="Django module to load data from stdin",
long_description=readme.read(),
url='https://github.com/squareweave/django-loaddata-stdin',
author='Squareweave',
author_email='team@squareweave.com.au',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
packages=find_packages(),
install_requires=requirements.readlines(),
test_suite='django_loaddata_stdin.tests',
tests_require=test_requirements.readlines(),
)