-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 754 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 754 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
from distutils.core import setup
setup(
name='raf',
packages=['raf'],
version='0.1.0',
url='http://github.com/Met48/raf',
license='MIT',
author='Andrew Sutton',
author_email='me@andrewcsutton.com',
description='A library for reading League of Legends raf archives.',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
"construct>=2.5.1",
"six>=1.4.1",
],
)