-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 959 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
import os
import setuptools
import sys
if sys.version_info[0] < 3:
sys.exit("Stellata requires Python 3.")
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
author='Tommy MacWilliam',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Database',
],
description='A simple ORM for PostgreSQL.',
install_requires=[
'msgpack-python',
'psycopg2',
],
license='MIT',
long_description=long_description,
keywords='orm postgres postgresql',
name='stellata',
packages=setuptools.find_packages(),
url='https://github.com/tmacwill/stellata',
version='0.0.3',
)