-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 691 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 691 Bytes
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
"""
A simple Python 3 wrapper around The Setup's API.
See:
https://usesthis.com/api/
https://github.com/ivuk/pyusesthis/
"""
from setuptools import setup
setup(
name='pyusesthis',
version='0.0.1',
description="A wrapper around The Setup's API",
url='https://github.com/ivuk/pyusesthis',
author='Igor Vuk',
author_email='parcijala+pyusesthis@gmail.com',
license='MIT',
packages=['pyusesthis'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)