-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (18 loc) · 830 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import setuptools
with open("README.md", "r", encoding="utf-8") as fl:
long_description = fl.read();
setuptools.setup(
name='Aboutn',
version='0.2.2.10',
url='https://github.com/AkiraDemenech/About-n-Squares/',
license='MIT License',
author= 'Guilherme Akira Demenech Mori',
author_email='[email protected]',
keywords='art constructivism game',
description='An Art and Genetic Algorithms Exploration Package based on Russian Constructivism bidimensional graphic works, ideas and method; ',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=[],
classifiers=["Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",],
);