forked from UncleEngineer/AIBuildersArt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.28 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
import io
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
HERE = dirname(abspath(__file__))
LOAD_TEXT = lambda name: io.open(join(HERE, name), encoding='UTF-8').read()
DESCRIPTION = '\n\n'.join(LOAD_TEXT(_) for _ in [
'README.rst'
])
setup(
name = 'aibuildersart',
packages = ['aibuildersart'],
version = '0.0.1',
license='MIT',
description = 'ASCII ART by AIBuilders member',
long_description=DESCRIPTION,
author = 'AIBuilders member',
author_email = '[email protected]',
url = 'https://github.com/UncleEngineer/AIBuildersArt',
download_url = 'https://github.com/UncleEngineer/AIBuildersArt/archive/v0.0.1.zip',
keywords = ['ASCII','AIBuilders','Uncle Engineer'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)