-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 760 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
import io
VERSION = '0.0.1'
def main():
with io.open("README.md", encoding="utf8") as f:
long_description = f.read().strip()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name='srmdpy',
url='https://github.com/njericha/srmdpy',
author='Nicholas Richardson',
author_email='njericha@uwaterloo.ca',
packages=['srmdpy'],
install_requires=required,
version=VERSION,
license='MIT',
description='A Python implimentation of Sparse Random Mode Decomposition',
long_description=long_description,
long_description_content_type="text/markdown",
)
if __name__ == '__main__':
main()