kopia lustrzana https://github.com/sepandhaghighi/samila
rel : migrate to version 1.0
rodzic
b38deb26c3
commit
54d58497ef
|
@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
## [1.0] - 2022-12-14
|
||||
### Added
|
||||
- `Marker` enum
|
||||
- `get_data` function
|
||||
|
@ -152,7 +153,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
- `generate` method
|
||||
- `nft_storage` method
|
||||
|
||||
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v0.9...dev
|
||||
[Unreleased]: https://github.com/sepandhaghighi/samila/compare/v1.0...dev
|
||||
[1.0]: https://github.com/sepandhaghighi/samila/compare/v0.9...v1.0
|
||||
[0.9]: https://github.com/sepandhaghighi/samila/compare/v0.8...v0.9
|
||||
[0.8]: https://github.com/sepandhaghighi/samila/compare/v0.7...v0.8
|
||||
[0.7]: https://github.com/sepandhaghighi/samila/compare/v0.6...v0.7
|
||||
|
|
|
@ -88,7 +88,7 @@ Samila is a generative art generator written in Python, Samila lets you create i
|
|||
|
||||
|
||||
### Source code
|
||||
- Download [Version 0.9](https://github.com/sepandhaghighi/samila/archive/v0.9.zip) or [Latest Source ](https://github.com/sepandhaghighi/samila/archive/dev.zip)
|
||||
- Download [Version 1.0](https://github.com/sepandhaghighi/samila/archive/v1.0.zip) or [Latest Source](https://github.com/sepandhaghighi/samila/archive/dev.zip)
|
||||
- Run `pip install -r requirements.txt` or `pip3 install -r requirements.txt` (Need root access)
|
||||
- Run `python3 setup.py install` or `python setup.py install` (Need root access)
|
||||
|
||||
|
@ -96,7 +96,7 @@ Samila is a generative art generator written in Python, Samila lets you create i
|
|||
|
||||
|
||||
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
|
||||
- Run `pip install samila==0.9` or `pip3 install samila==0.9` (Need root access)
|
||||
- Run `pip install samila==1.0` or `pip3 install samila==1.0` (Need root access)
|
||||
|
||||
### Easy install
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{% set name = "samila" %}
|
||||
{% set version = "0.9" %}
|
||||
{% set version = "1.0" %}
|
||||
|
||||
package:
|
||||
name: {{ name|lower }}
|
||||
|
|
|
@ -4,7 +4,7 @@ import os
|
|||
import sys
|
||||
import codecs
|
||||
Failed = 0
|
||||
SAMILA_VERSION = "0.9"
|
||||
SAMILA_VERSION = "1.0"
|
||||
|
||||
|
||||
SETUP_ITEMS = [
|
||||
|
|
|
@ -5,7 +5,7 @@ from enum import Enum
|
|||
from matplotlib import colors as mcolors
|
||||
from matplotlib import cm
|
||||
|
||||
SAMILA_VERSION = "0.9" # pragma: no cover
|
||||
SAMILA_VERSION = "1.0" # pragma: no cover
|
||||
|
||||
OVERVIEW = '''
|
||||
Samila is a generative art generator written in Python, Samila let's you
|
||||
|
|
6
setup.py
6
setup.py
|
@ -33,14 +33,14 @@ def read_description():
|
|||
setup(
|
||||
name='samila',
|
||||
packages=['samila'],
|
||||
version='0.9',
|
||||
version='1.0',
|
||||
description='Generative ART',
|
||||
long_description=read_description(),
|
||||
long_description_content_type='text/markdown',
|
||||
author='Samila Development Team',
|
||||
author_email='info@samila.site',
|
||||
url='https://www.samila.site',
|
||||
download_url='https://github.com/sepandhaghighi/samila/tarball/v0.9',
|
||||
download_url='https://github.com/sepandhaghighi/samila/tarball/v1.0',
|
||||
keywords="generative-art art nft file nft-storage",
|
||||
project_urls={
|
||||
'Source': 'https://github.com/sepandhaghighi/samila',
|
||||
|
@ -50,7 +50,7 @@ setup(
|
|||
install_requires=get_requires(),
|
||||
python_requires='>=3.5',
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Natural Language :: English',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: OS Independent',
|
||||
|
|
Ładowanie…
Reference in New Issue