- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
13 lines (12 loc) · 438 Bytes
/
Copy pathsetup.py
File metadata and controls
13 lines (12 loc) · 438 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
fromsetuptoolsimportsetup, find_packages
setup(
name='valleorm',
version='1.2.3',
author='Manuel Rodriguez',
author_email='valle.mrv@gmail.com',
description='Orm simple al estilo django. Es compatible los modelos basicos creados en django.',
packages=['valleorm', "valleorm.models"],
url='https://github.com/vallemrv/python-ormsqlite',
license='LICENSE',
long_description=open('README.txt').read(),
)