Skip to content

Commit e0de6eb

Browse files
author
Jeremy Manning
committed
updated setup and license
1 parent 5ce927d commit e0de6eb

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Fee Lab
3+
Copyright (c) 2018 Contextual Dynamics Laboratory
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,20 @@
33
with 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

98
with open('LICENSE') as f:
109
license = f.read()
1110

1211
setup(
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
)

0 commit comments

Comments
 (0)