-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 940 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 940 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
27
import setuptools
with open("resources/plain-readme.txt", "r") as reamde:
description = reamde.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name="domsagxo",
version="0.0.1",
author="Lior Samuel",
author_email="liorsam@campus.technion.ac.il",
description="Domsagxo -- an Esperanto-based vocal scripting language for smart home or VUI",
long_description=description,
long_description_content_type="text/markdown",
url="http://github.com/liordon/domsagxo",
packages=setuptools.find_packages(where=".", exclude=("domsagxo/syntax_high_light", "test")),
include_package_data=True,
setup_requires=['wheel'],
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)