-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 1 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
# -*- coding: utf-8 -*-
"""
Setup module for recipe_generator
"""
import sys
from setuptools import setup, find_packages
install_requires = ['bs4', 'termcolor']
setup(name='feedme',
version='1.0',
description='gib me dat food eh',
url='https://github.com/khavernathy/recipe_generator',
author='Douglas Franz',
author_email='nah@nah.com',
install_requires=install_requires,
zip_safe=False, # Use of __file__ and __path__ in some code makes it unusable from zip
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
platforms=['any'],
license='MIT',
)