-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 823 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 823 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
description="{{cookiecutter.project_slug}}",
install_requires=["zocalo"],
license="BSD license",
include_package_data=True,
keywords="zocalo mimas",
name="{{cookiecutter.project_slug}}",
packages=find_packages(exclude=("tests",)),
python_requires=">=3.7",
setup_requires=[],
version="0.1.0",
zip_safe=False,
)