forked from svanheulen/mhef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 722 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 722 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='mhef',
version='1.1.16',
description='Monster Hunter Encryption Functions',
url='https://github.com/svanheulen/mhef',
author='Seth VanHeulen',
author_email='svanheulen@gmail.com',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography'
],
packages=['mhef'],
install_requires=['pycrypto']
)