forked from ivictbor/versionalchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (23 loc) · 756 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (23 loc) · 756 Bytes
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
from setuptools import setup
VERSION = '0.1.3'
DOWNLOAD_URL = 'https://github.com/NerdWalletOSS/versionalchemy/tarball/v{}'.format(VERSION)
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
setup(
name='versionalchemy',
version=VERSION,
packages=['versionalchemy', 'versionalchemy/api', 'versionalchemy/models'],
install_requires=[
'SQLAlchemy>=1.0.0',
'simplejson',
'arrow'
],
include_package_data=True,
author='Akshay Nanavati',
author_email='akshay@nerdwallet.com',
license='MIT License',
description='Versioning library for relational data',
url='https://github.com/NerdWalletOSS/versionalchemy',
download_url=DOWNLOAD_URL,
long_description=LONG_DESCRIPTION,
)