-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
50 lines (43 loc) · 1.29 KB
/
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
45
46
47
48
49
50
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.md').read()
doclink = """
Documentation
-------------
The full documentation is at http://django-sqlalchemy.rtfd.org."""
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='django-sqlalchemy',
version='0.0.1',
description='django extension for sqlalchemy integration ',
long_description=readme + '\n\n' + doclink + '\n\n' + history,
author='Asif Saif Uddin',
author_email='[email protected]',
url='https://github.com/auvipy/django-sqlalchemy',
packages=[
'django-sqlalchemy',
],
package_dir={'django-sqlalchemy': 'sqladjango'},
include_package_data=True,
install_requires=[
],
license='MIT',
zip_safe=False,
keywords='django-sqlalchemy','sqlalchemy','django',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)