-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.09 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
#!/usr/bin/env python
# from distutils.core import setup
import os
from setuptools import Extension, find_packages, setup
from pathlib import Path
cwd = Path(__file__).parent
long_description = (cwd / "README.md").read_text()
version = "0.0.3-dev"
setup(
name='pynegex',
version=version,
author="Moe Bin Sumait",
author_email="[email protected]",
description="Pypi package for negex with multilingual support",
long_description=long_description,
long_description_content_type='text/markdown',
# Find packages under the 'src' directory
packages=find_packages(),
# Root directory for the packages
package_dir={'pynegex': 'pynegex'},
package_data={'pynegex': [
"model/triggersets/*.txt"
]},
py_modules=["pynegex"], # Name of the python package
# List any dependencies required by your package)
python_requires='>=3.6', # Minimum version requirement of the package
install_requires=[],
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
],
)