-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.25 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
# Asq's setup.py
from distutils.core import setup
from asq import __version__ as version
with open('README.txt', 'r') as readme:
long_description = readme.read()
setup(
name = "asq",
packages = ["asq"],
version = "{version}".format(version=version),
description = "LINQ-for-objects style queries for Python iterables.",
author = "Robert Smallshire",
author_email = "[email protected]",
url = "http://code.google.com/p/asq/",
download_url="http://code.google.com/p/asq/downloads/detail?name=asq-{version}.tar.gz".format(version=version),
keywords = ["Python", "LINQ"],
license="MIT License",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
requires = ['ordereddict'],
long_description = long_description
)