-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
63 lines (56 loc) · 1.77 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import ast
from io import open
from setuptools import find_packages, setup
import os
with open('src/version.py', 'r') as f:
for line in f:
if line.startswith('VERSION'):
version = ast.literal_eval(line.strip().split('=')[-1].strip())
break
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
os.system('pip install --user git+https://github.com/odwdinc/pyamiibo@master')
setup(
name='ssbu_amiibo',
version=version,
description='SSBU Amiibo Editor',
long_description=readme,
long_description_content_type='text/markdown',
author='Anthony Pray',
author_email='[email protected]',
maintainer='Anthony Pray',
maintainer_email='[email protected]',
url='https://github.com/odwdinc/SSBU_Amiibo',
license='MIT',
keywords=[
'',
],
install_requires=[
'pyamiibo',
'cryptography',
'Pillow',
'requests'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages(),
entry_points={
'gui_scripts': [
'pyhex = src.hex:maine',
'ssbu_amiibo = src.ui:maine'
],
},
)