-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 901 Bytes
/
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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='FETracker',
version='1.0.0',
description='Automatically tracks progress in Final Fantasy 4 Free Enterprise',
author='Edward Parry',
author_email='[email protected]',
url='https://github.com/EchoDel/FETracker',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['emulator_interaction', 'tracker'],
install_requires=['bizhook'],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'flake8<4', 'pytest-flake8', 'pytest-html', 'pytest-cov'],
license='GNU General Public License v3.0',
platforms='any',
dependency_links=['https://gitlab.com/EchoDel/bizhook/-/jobs/1780768808/artifacts/raw/dist/bizhook-1.0.0-py3-none-any.whl']
)