-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (33 loc) · 1.08 KB
/
setup.py
File metadata and controls
executable file
·36 lines (33 loc) · 1.08 KB
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
import os.path
from setuptools import setup
#The directory containing this file
HERE = os.path.abspath(os.path.dirname(__file__))
# The text of the README file
with open(os.path.join(HERE, "README.md")) as fid:
README = fid.read()
setup(
name='ODSForm',
version='0.1',
description='Fill out ODS spreadsheets from JSON or YAML',
license="GPLv3",
long_description=README,
long_description_content_type="text/markdown",
author='Tom Fredrik Blenning',
author_email='bfg@blenning.no',
url="https://github.com/BFGConsult/ODSForm",
packages=['ODSForm'], #same as name
# packages=setuptools.find_packages(),
platforms=['any'],
install_requires=['pyexcel-ezodf', 'lxml'], #external packages as dependencies
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
# scripts=[
# 'scripts/cool',
# 'scripts/skype',
# ]
)