-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 948 Bytes
/
setup.py
File metadata and controls
39 lines (36 loc) · 948 Bytes
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
37
38
39
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
requires = [
'python-tds',
'olefile',
'click',
'transliterate',
"pysmbclient"
]
setup(
name="v7client",
version="0.3.10",
license="GPL",
description='1Cv7 client',
long_description=read("README.md"),
author="Stoyanov Evgeny",
author_email="quick.es@gmail.com",
url="https://github.com/WorldException/v7client",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: Russian',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
],
packages=['v7client', 'v7types'],
keywords='1C',
#requires=requires,
install_requires=requires,
)