-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.15 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
import os
from distutils.core import setup
from setuptools import find_packages
def requirements(fname):
return [line.strip()
for line in open(os.path.join(os.path.dirname(__file__), fname))]
setup(
name='flask-wikimediaui',
version="0.0.1",
author='Aaron Halfaker',
author_email='aaron.halfaker@gmail.com',
packages=find_packages(),
scripts=[],
url='http://pypi.python.org/pypi/flask-wikimediaui',
license=open('LICENSE').read(),
description='This library provides python Flask utilities and static ' +
'assets for rendering Wikimedia UI elements',
include_package_data=True,
long_description=open('README.md').read(),
install_requires=requirements("requirements.txt"),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)