-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (22 loc) · 769 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (22 loc) · 769 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
28
29
from os import path
from setuptools import setup, find_packages
import codecs
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = codecs.decode(f.read(), 'utf-8')
setup(
name='winmoncon',
version='0.0.1',
description='A Python inteface to the Windows Monitor Configuration API',
long_description=long_description,
author='Mihai Ciumeică',
license='Public Domain',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
],
packages=find_packages(exclude=['tests', 'docs', 'examples'])
)