-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathold-setup.py
46 lines (42 loc) · 1.38 KB
/
old-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
from __future__ import print_function
from setuptools import setup
from ttastromech.version import __version__ as VERSION
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
PACKAGE_NAME = 'ttastromech'
BuildCommand.pkg = PACKAGE_NAME
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
setup(
author='Kevin Walchko',
author_email='[email protected]',
name=PACKAGE_NAME,
version=VERSION,
description='python library transform text strings into Astromech (like R2D2) sounds',
long_description=open('readme.rst').read(),
url='http://github.com/walchko/{}'.format(PACKAGE_NAME),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
license='MIT',
keywords=['r2d2', 'tts', '', 'star wars', 'driod', 'astromech'],
packages=[PACKAGE_NAME],
install_requires=['build_utils'],
include_package_data=True,
cmdclass={
'make': BuildCommand,
'publish': PublishCommand
},
scripts=[
'bin/astromech-speak.py',
]
)