forked from dhanababum/accessdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 774 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (23 loc) · 774 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
from __future__ import absolute_import
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
PACKAGE_PATH = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(PACKAGE_PATH, 'README.md'), encoding='utf-8') as fp:
readme = fp.read()
setup(
name='accessdb',
packages=['accessdb'],
version='0.0.1',
description='Fast way to create Access Database',
long_description=readme,
long_description_content_type='text/markdown',
author='Dhana Babu',
author_email='dhana36.m@gmail.com',
url='https://github.com/dhanababum/accessdb',
download_url='https://github.com/dhanababum/accessdb/archive/0.1.tar.gz',
keywords=['python', 'accessdb', 'text'],
classifiers=[],
)