forked from nkrkv/pyinsales
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 977 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
install_requires = open("requirements.txt").read().split('\n')
with open("README.md", 'rb') as f:
readme_content = f.read().decode('utf-8')
setup(
name='pyinsales',
version='1.8.0',
description='InSales e-commerce platform API bindings',
long_description=readme_content,
long_description_content_type="text/markdown",
author='Victor Nakoryakov',
author_email='[email protected]',
license='MIT',
keywords="insales API bindings",
url='https://github.com/nailxx/pyinsales',
packages=['insales'],
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Natural Language :: Russian",
"Topic :: Utilities",
],
)