-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.6 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
from setuptools import find_packages
from setuptools import setup
VERSION = '0.0.1'
setup(
name='brewdata',
version=VERSION,
author='Chris Gilmer',
author_email='[email protected]',
maintainer='Chris Gilmer',
maintainer_email='[email protected]',
license="MIT",
description='Brew Data',
url='https://github.com/chrisgilmerproj/brewdata',
download_url='https://github.com/chrisgilmerproj/brewdata/tarball/{}'.format(VERSION), # noqa
packages=find_packages(exclude=["scraper*",
"*.tests",
"*.tests.*",
"tests.*",
"tests"]),
package_data={
'brewdata': ['*/*.json'],
},
include_package_data=True,
zip_safe=False,
keywords='brew brewing beer grain hops yeast',
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',
],
)