This repository was archived by the owner on Apr 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.37 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.37 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""Package setup."""
import setuptools
description = "Tasty development tooling for Bocadillo."
with open("README.md", "r") as readme:
long_description = readme.read()
GITHUB = "https://github.com/bocadilloproject/queso"
DOCS = "https://bocadilloproject.github.io/queso"
CHANGELOG = f"{GITHUB}/blob/master/CHANGELOG.md"
setuptools.setup(
name="queso",
version="0.2.1",
author="Florimond Manca",
author_email="florimond.manca@gmail.com",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=["click"],
url=DOCS,
project_urls={
"Source": GITHUB,
"Documentation": DOCS,
"Changelog": CHANGELOG,
},
license="MIT",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
"Topic :: Software Development :: Code Generators",
],
entry_points={"console_scripts": ["queso=queso.__main__:cli"]},
)