-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 866 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Created by flytrap
from distutils.core import setup
from bwg.bwg_api import BWG
setup(
name='bwg-api',
version='0.1.1',
description='BWG API',
long_description=BWG.__doc__,
author='flytrap',
author_email='[email protected]',
url='https://github.com/flytrap/bwg-api',
packages=['bwg'],
install_requires=[
'requests>=2.20.0',
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)