-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.3 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
from pathlib import Path
from setuptools import (find_packages,
setup)
import memoir
project_base_url = 'https://github.com/lycantropos/memoir/'
setup(name='memoir',
packages=find_packages(exclude=('tests', 'tests.*')),
version=memoir.__version__,
description=memoir.__doc__,
long_description=Path('README.md').read_text(encoding='utf-8'),
long_description_content_type='text/markdown',
license='MIT License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
],
author='Azat Ibrakov',
author_email='azatibrakov@gmail.com',
url=project_base_url,
download_url=project_base_url + 'archive/master.zip',
python_requires='>=3.5.3')