-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (30 loc) · 968 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
37
38
39
40
41
42
43
44
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
req_list = ['sqlalchemy']
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(
name='orm-creator',
packages=['orm_creator'],
version='1.0.0',
description='Automatically maps sql tables'
' and generates classes for ORM manipulation',
author='Shravan Murali',
author_email='[email protected]',
install_requires=req_list,
entry_points={
'console_scripts': ['orm-creator = orm_creator:'
'main']
},
url='https://github.com/shravan97/ORM-Creator',
keywords=['sqlalchemy', 'automate', 'ORM', 'MySql'],
classifiers=['Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Education'],
license='MIT License'
)