-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (42 loc) · 1.27 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='psbs',
version='0.3.3',
python_requires='>=3.8',
description='PuzzleScript Build System',
long_description=long_description,
long_description_content_type='text/markdown',
author='J.C. Miller',
author_email='johncoreymiller@gmail.com',
url='https://github.com/jcmiller11/PSBS',
download_url = 'https://github.com/jcmiller11/PSBS/archive/refs/tags/0.3.3.tar.gz',
license='MIT',
packages=find_packages(),
package_data={'': ['example.txt']},
include_package_data=True,
install_requires=[
'jinja2',
'pyyaml',
'Pillow',
'platformdirs',
'requests',
'numpy',
'pyppeteer'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment :: Puzzle Games',
'Topic :: Software Development :: Build Tools'
],
entry_points={
'console_scripts': [
'psbs=psbs.psbs:_main'
],
},
)