-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
57 lines (49 loc) · 1.78 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
import pysenteishon
if sys.version_info[0] < 3:
raise Exception('Python 2 version is not supported')
if sys.platform == 'darwin':
requirements_file = 'requirements.darwin.txt'
else:
requirements_file = 'requirements.txt'
with open(requirements_file, 'r') as fh:
dependencies = [l.strip() for l in fh]
setup(
name=pysenteishon.__prj__,
version=pysenteishon.__version__,
description='Control your presentations swiping your touchscreen!',
long_description=open('README.rst').read(),
url='https://github.com/edvm/pysenteishon',
author=pysenteishon.__author__,
author_email=pysenteishon.__email__,
maintainer='Manuel Kaufmann',
maintainer_email='[email protected]',
license=pysenteishon.__license__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Conferencing',
],
keywords='presentation touchscreen talk pycon conference',
packages=find_packages(exclude=['samples']),
install_requires=dependencies,
include_package_data=True,
entry_points={
'console_scripts': [
'pysenteishon=pysenteishon.app:main',
],
},
)