forked from limboy/thing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 907 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (31 loc) · 907 Bytes
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
from setuptools import setup
import os
setup(
name = 'thing',
version = '0.1',
url = 'http://github.com/lzyy/thing',
license = 'BSD',
author = 'lzyy',
author_email = 'healdream@gmail.com',
description = 'a tiny active record orm based on sqlalchemy',
long_description = open('./README.md').read(),
zip_safe = False,
platforms = 'any',
packages = ["thing"],
include_package_data = True,
install_requires = [
'sqlalchemy',
'blinker',
'formencode',
'mysql-python',
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)