-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (40 loc) · 1.28 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
37
38
39
40
41
42
43
44
45
46
47
48
import setuptools
from setuptools.command.install import install
from setup.PatchLibrary import PatchLibrary
with open("README.md", "r") as fh:
long_description = fh.read()
class CustomInstallCommand(install):
def run(self):
install.run(self)
self.run_command('patch')
setuptools.setup(
cmdclass={
'patch': PatchLibrary,
'install': CustomInstallCommand
},
name="thunder-remote",
version="0.6.1",
author="Schrotty",
author_email="rubenmaurer@live.de",
description="A modified version of the 'pyController' package for usage with a ThunderBorg",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Schrotty/thunder-remote",
keywords="thunder-borg borg remote-control remote rc",
packages=setuptools.find_packages(),
install_requires=[
'inputs',
'events',
'enum34'
],
license="MIT",
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"
],
)