-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
29 lines (24 loc) · 800 Bytes
/
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
from setuptools import setup
from setuptools import find_packages, setup
try: # for pip >= 10
from pip._internal.req import parse_requirements
requirement_field_name = 'requirement'
except ImportError: # for pip <= 9.0.3
requirement_field_name = 'req'
with open("requirements.txt") as f:
dependencies = [line for line in f if "==" in line]
setup(
name='zemberek_parser',
version='2.0.0',
packages=find_packages(),
url='https://github.com/kemalcanbora/zemberek_parser',
license='BSD',
package_data={'': ['*.xml', '*.txt']},
author='Kemalcan Bora',
author_email='[email protected]',
description='Zemberek lite python wrapper',
classifiers=[
"License :: OSI Approved :: BSD License",
],
install_requires=dependencies
)