-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
30 lines (27 loc) · 1.08 KB
/
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
from setuptools import setup, find_packages
import os
def read(*names):
return open(os.path.join(os.path.dirname(__file__), *names)).read()
setup(
name="dfly-breathe",
version=read("version.txt"),
description="Dragonfly command API",
author="Mike Roberts",
author_email="mike.roberts.2k10@googlemail.com",
license="LICENSE.txt",
url="https://github.com/mrob95/Breathe",
long_description = read("README.md"),
long_description_content_type='text/markdown',
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=["dragonfly2"],
classifiers=[
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: "
"GNU Library or Lesser General Public License (LGPL)",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
],
)