samila/setup.py

63 wiersze
2.3 KiB
Python
Czysty Zwykły widok Historia

2021-09-26 20:45:02 +00:00
# -*- coding: utf-8 -*-
"""Setup module."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
MINIMAL_DESCRIPTION = '''Samila is a generative art generator written in Python, Samila let's you create arts based on many thousand points. The position of every single point is calculated by a formula, which has random parameters. Because of the random numbers, every image looks different.'''
2021-09-26 20:45:02 +00:00
def get_dev_requires():
"""Read dev-requirements.txt."""
requirements = open("dev-requirements.txt", "r").read()
return list(filter(lambda x: x != "", requirements.split()))
def read_description():
"""Read README.md and CHANGELOG.md."""
try:
with open("README.md") as r:
description = "\n"
description += r.read()
with open("CHANGELOG.md") as c:
description += "\n"
description += c.read()
return description
except Exception:
return MINIMAL_DESCRIPTION
setup(
name='samila',
packages=['samila'],
2021-09-27 06:52:06 +00:00
version='0.1',
2021-09-26 20:45:02 +00:00
description='Generative ART',
long_description="Samila is a generative art generator written in Python, Samila let's you create arts based on many thousand points. The position of every single point is calculated by a formula, which has random parameters. Because of the random numbers, every image looks different.",
2021-09-26 20:45:02 +00:00
long_description_content_type='text/markdown',
author='Sepand Haghighi',
2021-09-29 14:37:35 +00:00
author_email='info@4r7.ir',
2021-09-26 20:45:02 +00:00
url='https://github.com/sepandhaghighi/samila',
2021-09-29 15:36:19 +00:00
download_url='https://github.com/sepandhaghighi/samila/tarball/v0.1',
2021-09-26 20:45:02 +00:00
keywords="generative-art art nft",
project_urls={
'Source': 'https://github.com/sepandhaghighi/samila',
'Tracker': 'https://github.com/sepandhaghighi/samila/issues',
},
install_requires=[],
python_requires='>=3.5',
classifiers=[
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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',
],
license='MIT',
include_package_data=True
)