-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·34 lines (30 loc) · 1.07 KB
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_libmodule',
version='0.7.7',
description='Library for writing Python modules for the PPP.',
url='https://github.com/ProjetPP/PPP-libmodule-Python',
author='Valentin Lorentz',
author_email='[email protected]',
license='AGPLv3+',
classifiers=[
'Environment :: No Input/Output (Daemon)',
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries',
],
install_requires=[
'ppp_datamodel>=0.6.10,<0.7',
],
packages=[
'ppp_libmodule',
],
)