File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2018 Fee Lab
3+ Copyright (c) 2018 Contextual Dynamics Laboratory
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 33with open ('requirements.txt' ) as f :
44 requirements = f .read ().splitlines ()
55
6- with open ('README.md' ) as f :
7- readme = f .read ()
6+ readme = 'Python implementation of seqNMF. For more information visit https://github.com/ContextLab/seqnmf.'
87
98with open ('LICENSE' ) as f :
109 license = f .read ()
1110
1211setup (
1312 name = 'seqnmf' ,
1413 version = '0.1.0' ,
15- description = 'Python implementation of seqnmf ' ,
14+ description = 'Python implementation of seqNMF ' ,
1615 long_description = readme ,
1716 author = 'Contextual Dynamics Laboratory' ,
1817 author_email = 'contextualdynamics@gmail.com' ,
1918 url = 'https://www.context-lab.com' ,
2019 license = license ,
21- install_requires = requirements ,
20+ install_requires = requirements ,
2221 packages = find_packages (exclude = ('tests' , 'docs' ))
2322)
You can’t perform that action at this time.
0 commit comments