forked from chrisgilmerproj/brewday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.66 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
from setuptools import find_packages
from setuptools import setup
VERSION = '0.0.2'
setup(
name='brewday',
version=VERSION,
author='Chris Gilmer',
author_email='[email protected]',
maintainer='Chris Gilmer',
maintainer_email='[email protected]',
license="MIT",
description='Brew Day Tools',
url='https://github.com/chrisgilmerproj/brewday',
download_url='https://github.com/chrisgilmerproj/brewday/tarball/{}'.format(VERSION), # nopep8
packages=find_packages(exclude=["*.tests",
"*.tests.*",
"tests.*",
"tests"]),
scripts=['bin/abv',
'bin/sugar',
'bin/temp',
'bin/yeast'],
include_package_data=True,
zip_safe=True,
tests_require=[
'nose==1.3.1',
'pluggy==0.3.1',
'py==1.4.31',
'tox==2.3.1',
],
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.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
),
)