-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
38 lines (33 loc) · 992 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# coding: utf-8
import setuptools
import os
import sys
this_directory = os.path.abspath(os.path.dirname(__file__))
sys.path.append(this_directory)
readme = open(os.path.join(this_directory, 'README.md'), 'r', encoding='utf-8').read()
tabugen_version = '1.1.0'
setuptools.setup(
name='tabugen',
version=tabugen_version,
license='Apache License 2.0',
author='Johnnie Chen',
author_email='ichenq@outlook.com',
url='https://github.com/ki7chen/tabugen',
description=u'a spreadsheet export and code generation tool for rapid game development',
long_description=readme,
long_description_content_type='text/markdown',
python_requires='>=3.9',
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=[
'xlrd>=2.0.1',
'openpyxl>=3.1.3',
'inflect>=7.2.0',
],
entry_points={
'console_scripts': [
"tabugen = tabugen.__main__:main"
]
}
)