forked from booch-self/self-concepts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (22 loc) · 768 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
from setuptools import setup
from setuptools import find_packages
with open('README.md', 'r') as readMe:
long_description = readMe.read()
setup(
name = 'self_concepts',
version = '1.0',
author = 'Grady Booch',
author_email = '[email protected]',
description = 'Self''s foundational abstractions',
long_description = long_description,
long_description_content_type = 'text/markdown',
keywords = 'self agi neuro-symbolic',
url = 'https://github.com/booch-self/self-concepts',
packages = find_packages(where='source'),
classifiers = [
'Programming Language :: Python :: 3.0',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
python_requires = ' >= 3.0'
)