-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (51 loc) · 1.75 KB
/
setup.py
File metadata and controls
64 lines (51 loc) · 1.75 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
import codecs
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from autopython import VERSION
with codecs.open('README.rst', encoding='utf-8') as readme_file:
long_description = readme_file.read()
PY_VER = str(sys.version_info[0])
setup(
name='autopython',
version=VERSION,
license='GPLv3',
description='Autoscripting for Python ' + PY_VER,
long_description=long_description,
packages=['autopython'],
entry_points={
'console_scripts': [
'autopython' + PY_VER + ' = autopython.__main__:main',
],
},
extras_require={
'highlighting': ['colorama', 'Pygments>=0.10'],
'ipython': ['ipython>=1.0']
},
url='https://github.com/gosella/autopython',
download_url='https://github.com/gosella/autopython/tarball/' + VERSION,
author='Germán Osella Massa',
author_email='german.osella@nexo.unnoba.edu.ar',
maintainer='Germán Osella Massa',
maintainer_email='german.osella@nexo.unnoba.edu.ar',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Education',
'Topic :: Terminals',
'Topic :: Utilities',
],
keywords=['presentation', 'automatic', 'typing', 'ipython'],
)