-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.19 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
from io import open
from minpair import __version__
from setuptools import find_packages, setup
import os
with open('README.md') as readme_file:
long_description = readme_file.read()
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as f:
install_requires = f.read().splitlines()
with open(os.path.join(os.path.dirname(__file__), 'test_requirements.txt')) as f:
tests_require = f.read().splitlines()
setup(
name='minpair',
version=__version__,
author='Brandon Lim',
author_email='[email protected]',
description='Generate minimal pairs (and minimal sets).',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/brandonlim-hs/minpair',
packages=find_packages(),
license='MIT License',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
],
install_requires=install_requires,
use_scm_version={'version_scheme': 'post-release',
'write_to': 'minpair/_version.py', },
setup_requires=['setuptools_scm'],
python_requires='>=3.0',
)