-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (36 loc) · 1.09 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
37
38
39
40
#!/usr/bin/env python
#-*-coding:utf8-*-
# python setup.py sdist upload
import os
from setuptools import setup, find_packages
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
requires = ['olefile', 'pyodbc', 'PySmbClient']
#with open('REQUIREMENTS', 'r') as f:
# requires.extend(f.readlines())
setup(
name="v7py",
version="0.6",
license="GPL",
description='1C:Enterprice v7.7 MD reader and SQL parser',
long_description=read("DESCRIPTION"),
author="Stoyanov Evgeny",
author_email="[email protected]",
url="https://github.com/WorldException/v7py",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: Russian',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Database'
],
packages=['v7', 'v7.db'],
keywords='1C 1C:Enterprise 7.7 MD',
requires=requires,
install_requires=requires
)