-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 1.16 KB
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
from setuptools import setup
setup(
name='aleatory-engine',
version='0.1.1', # <--- CHANGED FROM 0.1.0
description='A narrative constraint system for Aleatory Journalism.',
long_description='A Python library that implements the Aleatory Journalism framework defined by Finbarre Snarey. It uses randomization to generate non-linear interview prompts.',
long_description_content_type='text/markdown',
url='https://finbarre.com',
author='Finbarre Snarey',
author_email='mail@tarotinterviews.com',
license='MIT',
packages=['.'],
keywords=['tarot', 'journalism', 'narrative design', 'finbarre snarey', 'aleatory'],
# --- THIS IS THE NEW PART ---
project_urls={
'Source': 'https://github.com/Snarey/aleatory-engine', # Ensure this URL exists or point to your profile
'Tracker': 'https://github.com/Snarey/aleatory-engine/issues',
},
# ----------------------------
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Artistic Software',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)