-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 714 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 714 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 setuptools import setup, find_packages
setup(
name='ecf_parser',
packages=find_packages(),
entry_points={
"console_scripts": [
'ecf2json = ecf_parser.__init__:print_ecf2json',
'json2ecf = ecf_parser.__init__:print_json2ecf'
]
},
version='0.1.3',
description="Tools for parsing Empyrion's .ecf files",
author='Chris Wheeler',
author_email='cmwhee@gmail.com',
url='https://github.com/lostinplace/ecf-parser',
download_url='https://github.com/lostinplace/ecf-parser/archive/0.1.tar.gz', # I'll explain this in a second
keywords=['empyrion', 'modding'],
classifiers=[],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
python_requires='>=3.6',
)