-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (45 loc) · 1.4 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
"""
Setup for the Pathfinder 2e tools
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='pathfinder-2e-tools',
version='1.0.0',
description='Pathfinder 2e tools',
long_description='A collection of tools for Pathfinder 2e',
url='https://github.com/ajs/pathfinder-2e-tools',
author='Aaron Sherman',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Gamers',
'Topic :: Gaming :: Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='tools gaming pathfinder d20',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
python_requires='~=3.5',
install_requires=[],
extras_require={
'dev': [],
'test': ['pytest'],
},
package_data={
'rules': ['ogl-content/rules.json'],
},
entry_points={ # Optional
'console_scripts': [
'pf2e-encounter=pf2e.encounter:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/ajs/pathfinder-2e-tools/issues',
'Source': 'https://github.com/ajs/pathfinder-2e-tools/',
'Rules': 'https://2e.aonprd.com/Rules.aspx',
'Official': 'https://paizo.com/pathfinder',
},
)