-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.49 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
41
42
43
44
45
46
from setuptools import setup
from setuptools import setup
from setuptools import find_namespace_packages
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
# install_requires = '''
# setuptools==60.1.0
# wheel==0.37.1
# pytest==6.1.2
# pandas==1.1.4
# '''
setup(
name='file-reader-utility',
version='0.5.0',
author='Lahiru Madhawa',
author_email='[email protected]',
description='file reader utility',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/LahiruMadhawa2020/file-reader-tester.git',
packages=['utility_file_reader'],
include_package_data=True,
install_requires=["setuptools==60.1.0", "wheel==0.37.1", "pytest==6.1.2", "pandas==1.1.4"],
python_requires='>=3.6',
license='MIT',
platforms=['any'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
# Programming Languages Used..
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)