-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
30 lines (25 loc) · 821 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
from setuptools import setup
import nanorm
try:
long_description = open('README.md').read()
except Exception as e:
long_description = ''
setup(
name='nanorm',
py_modules=['nanorm', 'nanorm_example'],
version=nanorm.__VERSION__,
keywords='orm namo mini sample database sqlite nanorm nanoorm',
description='A simple ORM framework for Python ( Nano ORM )',
long_description=long_description,
long_description_content_type="text/markdown",
author="Tao Jiayuan",
author_email="taojy123@163.com",
license="MIT",
url="https://github.com/taojy123/nanorm",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
],
)