-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·39 lines (37 loc) · 1.21 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
33
34
35
36
37
38
39
from setuptools import setup
# from distutils.core import setup
setup(
name="plugit",
packages=["plugit", "plugit_proxy"],
version="0.3.12",
license="BSD",
description="PlugIt is a framework enhancing the portability and integration of web services requiring a user interface.",
author="EBU Technology & Innovation",
author_email="[email protected]",
url="http://github.com/ebu/PlugIt",
download_url="",
keywords=["frontend"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
],
long_description=open("README.md").read() + "\n\n",
long_description_content_type='text/markdown',
install_requires=[
'requests',
'flask',
'django-ipware',
'django<1.9',
'python-dateutil',
'poster',
'pycrypto',
],
include_package_data=True,
)