-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
36 lines (34 loc) · 1008 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
31
32
33
34
35
36
from setuptools import setup
import os
import sys
import thing
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name = thing.__name__,
version = thing.__version__,
url = 'http://github.com/lzyy/thing',
license = thing.__license__,
author = thing.__author__,
author_email = '[email protected]',
description = 'lightweight SQLAlchemy based ORM',
long_description = open('README.md').read(),
zip_safe = False,
platforms = 'any',
packages = ["thing"],
include_package_data = True,
install_requires = [
'sqlalchemy',
'mysql-python',
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)