-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.01 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
'''Python setup.py for PyScalix'''
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# Setting up
setup(
name="PyScalix",
version="0.0.8",
description="Python Package to convert csv files to SQLite database and SQLite database to csv files",
long_description_content_type="text/markdown",
long_description=read('README.md'),
url="https://github.com/husnainkhurshiid/PyScalix.git",
keywords=['python', 'PyScalix', 'csv to sqlite',
'sqlite to csv', 'csv', 'husnain khurshid'],
author="Husnain Khurshid",
author_email="muhammadhusnainkh@gmail.com",
packages=["PyScalix"],
include_package_data=True,
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)