-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 871 Bytes
/
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
from setuptools import (
find_packages,
setup,
)
VERSION = '1.1.1'
with open('README.md', 'r', encoding='utf-8') as read_me:
long_description = read_me.read()
with open('requirements.txt', encoding='utf-8') as f:
required = f.read().splitlines()
setup(
author='Remme',
description='Python integration library for REMChain.',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache License 2.0',
install_requires=required,
name='remme',
packages=find_packages(),
url='https://github.com/Remmeauth/remme-client-python',
version=VERSION,
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)