-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (43 loc) · 1.37 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
from setuptools import find_packages
from setuptools import setup
import os.path
version = '1.1'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(name='hexagonit.swfheader',
version=version,
description="SWF metadata parser",
long_description=(
read('README.rst') + '\n' +
read('CHANGES.txt') + '\n\n' +
'Download\n' +
'*********\n'
),
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Topic :: Multimedia",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='SWF',
author='Kai Lautaportti',
author_email='[email protected]',
url='',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['hexagonit'],
include_package_data=True,
zip_safe=False,
test_suite='hexagonit.swfheader.tests.test_suite',
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
swfheader = hexagonit.swfheader:main
""",
)