forked from frederic-auchere/wavelets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (44 loc) · 1.39 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Documentation
# https://packaging.python.org/tutorials/packaging-projects/
#
# To install: "python setup.py install"
from setuptools import setup, find_packages
NAME = 'watroo'
DESCRIPTION = 'A trous wavelets transform package',
URL = ''
EMAIL = '[email protected]'
AUTHOR = 'Frédéric Auchère'
REQUIRES_PYTHON = '>=3.6.0'
VERSION = '0.0.1'
# If you do change the License, remember to change the Trove Classifier for that!
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as f:
requirements = f.read().strip('\n').split('\n')
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
install_requires=requirements,
license='LGPL-v3',
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
zip_safe=False,
ext_modules=None,
)