forked from simondlr/Python-App.net-API-Wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (20 loc) · 718 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (20 loc) · 718 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="appdotnet",
version="0.0.1",
packages=find_packages(),
install_requires=['requests'],
author="Simon de la Rouviere",
author_email="simon@delarouviere.com",
description="A simple wrapper for App.net's API.",
license="TODO",
keywords="microblog social api",
url="https://github.com/simondlr/Python-App.net-API-Wrapper",
classifiers=[
"Development Status :: 3 - Alpha",
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Programming Language :: Python'],
)