-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 742 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 742 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
#from distutils.core import setup
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='ossearch',
version='1.0',
author='Pricop Razvan',
author_email='razvan.pricop@protonmail.com',
license='MIT',
url='https://github.com/RazorBest/CDL-Open-Source-Search-Engine',
entry_points={
'console_scripts': [
'ossearch = ossearch.__main__:main',
]},
packages=['ossearch'],
install_requires=[
'bitstring >= 3.1.6'
],
dependency_links=[
'https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04/ wxPython']
)