-
Notifications
You must be signed in to change notification settings - Fork 87
/
setup.py
39 lines (36 loc) · 942 Bytes
/
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
from setuptools import setup
import dominos
def readme():
'''Read README file'''
with open('README.rst') as infile:
return infile.read()
setup(
name='dominos',
version=dominos.__version__,
description='Dominos Pizza UK API wrapper',
long_description=readme().strip(),
author='Tomas Basham',
author_email='me@tomasbasham.co.uk',
url='https://github.com/tomasbasham/dominos',
license='MIT',
packages=['dominos'],
install_requires=[
'ratelimit',
'requests'
],
keywords=[
'dominos',
'pizza',
'api'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development'
],
include_package_data=True,
zip_safe=False
)