forked from nens/threedi-scenario-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 980 Bytes
/
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
from setuptools import setup
version = "0.13.dev0"
long_description = "\n\n".join([open("README.rst").read(), open("CHANGES.rst").read()])
install_requires = ["requests"]
tests_require = ["pytest", "mock", "pytest-cov", "pytest-flakes", "pytest-black"]
setup(
name="threedi-scenario-downloader",
version=version,
description="Tools for downloading results for 3Di scenarios",
long_description=long_description,
# Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=["Programming Language :: Python", "Framework :: Django"],
keywords=[],
author="Emiel Verstegen",
author_email="[email protected]",
url="https://github.com/nens/threedi-scenario-downloader",
license="MIT",
packages=["threedi_scenario_downloader"],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={"test": tests_require},
)