-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (27 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
import sheepdog_tables
f = open('README.rst')
readme = f.read()
f.close()
setup(
name="sheepdog-tables",
version=sheepdog_tables.__version__,
author="Alex Hart, Adam Thurlow, Karl Leuschen",
description=("Easy to use tables API for Django"),
license = "BSD",
keywords = "tables",
url = "https://github.com/SheepDogInc/sheepdog_tables",
packages=find_packages(),
long_description=readme,
include_package_data=True,
classifiers=
[
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)