-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (38 loc) · 1.33 KB
/
setup.py
File metadata and controls
44 lines (38 loc) · 1.33 KB
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
40
41
42
43
44
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
requirements = [
"aiohttp>=3.1.0",
]
setup(name='Python-flist',
version='0.1.4',
author='StormyDragon',
author_email='stormy.pypi@stormweyr.dk',
description='Python module for interacting with the f-list website.',
url='https://github.com/StormyDragon/python-flist',
packages=find_packages(exclude=['examples']),
keywords=['flist'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Communications :: Chat",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=requirements,
provides=[
'flist',
],
long_description="""
Framework for interacting with the F-list website
-------------------------------------------------
Python module for F-List
This module requires python 3.5
For HTTPS and websockets the aiohttp module is used.
""",
)