-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1.28 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
'''Setup for FileSeeker installation'''
# --------------------------------------------------------------------
# Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)
# from setuptools import Extension
from setuptools import setup
with open("README.md","r",encoding="utf-8") as fh:
long_description = fh.read()
with open("version.txt","r",encoding="utf-8") as vh:
version_description = vh.read()
setup( name='FileSeeker',
version=version_description,
description=('FileSeeker is a Python package for finding a given'
'file or name in a given file within a given'
'directory with color-coded representation.'),
long_description=long_description, # Long description read from the the readme file
long_description_content_type="text/markdown",
author='Jean Gomes',
author_email='antineutrinomuon@gmail.com',
url='https://github.com/neutrinomuon/FileSeeker',
install_requires=[ 'numpy','matplotlib' ],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_dir={"fileseeker": "src/python"},
packages=['fileSeeker'],
data_files=[('', ['LICENSE.txt','version.txt']),],
)