-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 699 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 699 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
long_description = open("README.rst").read()
except IOError:
long_description = ""
setup(
name="disport",
version="0.1.0",
description="A xrandr wrapper",
license="MIT",
author="Tim Wunderlich",
author_email="mail@tim-wunderlich.de",
url="https://github.com/TimWunderlich/disport",
packages=find_packages(),
install_requires=[],
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
entry_points = {
"console_scripts": ['disport = disport.disport:main']
},
)