AuroraProgram commited on
Commit
7dfb108
·
verified ·
1 Parent(s): b1a6aaa

Upload setup.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. setup.py +45 -0
setup.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+ import pathlib
3
+
4
+ here = pathlib.Path(__file__).parent.resolve()
5
+
6
+ setup(
7
+ name='aurora-trinity',
8
+ version='1.1.1',
9
+ description='Aurora Trinity-3: Fractal, Ethical, Free Electronic Intelligence',
10
+ long_description=(here / 'README.md').read_text(encoding='utf-8'),
11
+ long_description_content_type='text/markdown',
12
+ author='Aurora Alliance',
13
+ author_email='contacto@aurora-program.org',
14
+ url='https://github.com/Aurora-Program/Trinity-3',
15
+ license='Apache-2.0',
16
+ packages=['trinity_3'],
17
+ python_requires='>=3.8',
18
+ install_requires=[
19
+ # No external dependencies - pure Python implementation
20
+ ],
21
+ include_package_data=True,
22
+ classifiers=[
23
+ 'Development Status :: 5 - Production/Stable',
24
+ 'Programming Language :: Python :: 3',
25
+ 'Programming Language :: Python :: 3.8',
26
+ 'Programming Language :: Python :: 3.9',
27
+ 'Programming Language :: Python :: 3.10',
28
+ 'Programming Language :: Python :: 3.11',
29
+ 'Programming Language :: Python :: 3.12',
30
+ 'License :: OSI Approved :: Apache Software License',
31
+ 'Operating System :: OS Independent',
32
+ 'Intended Audience :: Science/Research',
33
+ 'Intended Audience :: Developers',
34
+ 'Topic :: Scientific/Engineering :: Artificial Intelligence',
35
+ 'Topic :: Software Development :: Libraries :: Python Modules',
36
+ 'Natural Language :: English',
37
+ 'Natural Language :: Spanish',
38
+ ],
39
+ keywords='ai, ternary-logic, fractal, neural-networks, knowledge-base, ethical-ai',
40
+ project_urls={
41
+ 'Bug Reports': 'https://github.com/Aurora-Program/Trinity-3/issues',
42
+ 'Source': 'https://github.com/Aurora-Program/Trinity-3',
43
+ 'Documentation': 'https://github.com/Aurora-Program/Trinity-3/blob/main/README.md',
44
+ },
45
+ )