-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
73 lines (65 loc) · 2.24 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# encoding: utf-8
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import data_importer
def readme():
try:
os.system("pandoc --from=markdown --to=rst README.md -o README.rst")
with open("README.rst") as f:
return f.read()
except Exception:
return """**Django Data Importer** is a tool which allow you to transform easily a CSV, XML, XLS and XLSX file into a python object or a django model instance. It is based on the django-style declarative model. Read More: (https://django-data-importer.readthedocs.io/en/latest/)"""
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ["data_importer", "tests", "--cov=data_importer", "-vrsx"]
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
name="data-importer",
url="https://github.com/valdergallo/data-importer",
download_url="https://github.com/valdergallo/data-importer/tarball/{0!s}/".format(
data_importer.__version__
),
author="valdergallo",
author_email="[email protected]",
keywords="Django Data Importer XLS XLSX CSV XML",
description="Simple library to easily import data with Django",
license="BSD",
long_description=readme(),
classifiers=[
"Framework :: Django",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
version=data_importer.__version__,
install_requires=[
"django>=1.4",
"openpyxl>=2.4.0",
"xlrd>=1.0.0",
],
tests_require=[
"pytest>=3.0.2",
"pytest-cov>=2.3.1",
"pytest-django>=2.9.1",
"mock>=2.0.0",
"django>=1.4",
"six>=1.10",
"openpyxl>=2.4.0",
"xlrd>=1.0.0",
],
cmdclass={"test": PyTest},
zip_safe=False,
platforms="any",
package_dir={"": "."},
packages=find_packages(
".", exclude=["tests", "*.tests", "docs", "example", "media"]
),
package_data={"": ["templates/data_importer.html", "templates/my_upload.html"]},
)