-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (27 loc) · 1008 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from setuptools import setup, find_packages
from os import listdir
with open('requirements.txt', 'r') as f:
dependencies = f.read().splitlines()
descr = "A declarative API for composing spreadsheets from python"
name = 'xlcompose'
url = 'https://github.com/jbogaardt/xlcompose'
version='0.3.2' # Put this in __init__.py
data_path = ''
setup(
name=name,
version=version,
maintainer='John Bogaardt',
maintainer_email='[email protected]',
packages=['{}.{}'.format(name, p) for p in find_packages(where=name)]+['xlcompose'],
scripts=[],
url=url,
download_url='{}/archive/v{}.tar.gz'.format(url, version),
license='LICENSE',
include_package_data=True,
description=descr,
# long_description=open('README.md').read(),
install_requires=[dependencies],
)