-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
63 lines (60 loc) · 1.95 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
from setuptools import find_packages
from setuptools import setup
VERSION = "1.0.0"
setup(
name="brewday",
version=VERSION,
author="Chris Gilmer",
author_email="chris.gilmer@gmail.com",
maintainer="Chris Gilmer",
maintainer_email="chris.gilmer@gmail.com",
license="MIT",
description="Brew Day Tools",
url="https://github.com/chrisgilmerproj/brewday",
download_url="https://github.com/chrisgilmerproj/brewday/tarball/{}".format(
VERSION
), # noqa
packages=find_packages(exclude=[
"*.tests",
"*.tests.*",
"tests.*",
"tests"]),
entry_points={
"console_scripts": [
"abv = brew.cli.abv:main",
"gv = brew.cli.gravity_volume:main",
"sugar = brew.cli.sugar:main",
"temp = brew.cli.temp:main",
"yeast = brew.cli.yeast:main",
]
},
include_package_data=True,
zip_safe=True,
tests_require=[
"mock==2.0.0",
"nose==1.3.1",
"pluggy==0.3.1",
"py==1.4.31",
"tox==2.3.1",
],
keywords="brew brewing beer grain hops yeast alcohol",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)