Skip to content

Commit d55776c

Browse files
committed
added setup.py file
1 parent 449e144 commit d55776c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

setup.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name = "PyLINQ",
5+
version = "0.1",
6+
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
7+
8+
include_package_data = True,
9+
10+
# metadata for upload to PyPI
11+
author = "Insophia",
12+
13+
description = "PyLINQ it's a pure python port of the Microsoft LINQ project",
14+
license = "GPL v2",
15+
keywords = "pylinq linq collections iterators generators query language",
16+
url = "http://github.com/kalessin/PyLINQ", # project home page, if any
17+
18+
# could also include long_description, download_url, classifiers, etc.
19+
)

0 commit comments

Comments
 (0)