This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree 3 files changed +6
-9
lines changed
3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 2
2
from .generate import generate
3
3
from .pyeasyga import GeneticAlgorithm
4
4
from .visualize import visualize
5
+ from .__version__ import __version__
Original file line number Diff line number Diff line change
1
+ __version__ = '0.1.0'
Original file line number Diff line number Diff line change 13
13
14
14
# Package meta-data.
15
15
NAME = 'freqgen'
16
- DESCRIPTION = 'Generate sequences'
16
+ DESCRIPTION = 'Generate DNA sequences with specified amino acid, codon, and k-mer frequencies. '
17
17
URL = 'https://github.com/Lab41/freqgen'
18
18
EMAIL = 'benjamindlee@me.com'
19
19
AUTHOR = 'Benjamin Lee'
20
20
REQUIRES_PYTHON = '>=3.5.0'
21
- VERSION = 0.1
22
21
23
22
# What packages are required for this module to be executed?
24
23
REQUIRED = [
39
38
40
39
# Load the package's __version__.py module as a dictionary.
41
40
about = {}
42
- if not VERSION :
43
- with open (os .path .join (here , NAME , '__version__.py' )) as f :
44
- exec (f .read (), about )
45
- else :
46
- about ['__version__' ] = VERSION
47
-
41
+ with open (os .path .join (here , NAME , '__version__.py' )) as f :
42
+ exec (f .read (), about )
48
43
49
44
class UploadCommand (Command ):
50
45
"""Support setup.py upload."""
@@ -104,7 +99,7 @@ def run(self):
104
99
classifiers = [
105
100
# Trove classifiers
106
101
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
107
- 'License :: OSI Approved :: MIT License' ,
102
+ 'License :: OSI Approved :: Apache Software License' ,
108
103
'Programming Language :: Python' ,
109
104
'Programming Language :: Python :: 3' ,
110
105
'Programming Language :: Python :: 3.6' ,
You can’t perform that action at this time.
0 commit comments