forked from Andong-Li-speech/pytorch_complex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.28 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
#!/usr/bin/env python
import os
from setuptools import find_packages
from setuptools import setup
dirname = os.path.dirname(__file__)
setup(name='torch_complex',
version='0.2.1',
description='A fugacious python class for PyTorch-ComplexTensor',
long_description=open(os.path.join(dirname, 'README.md'),
encoding='utf-8').read(),
long_description_content_type="text/markdown",
author='Naoyuki Kamo',
author_email='[email protected]',
url='https://github.com/kamo-naoyuki/torch_complex',
packages=find_packages(include=['torch_complex']),
install_requires=['numpy'],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules'],
)