-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (33 loc) · 1.06 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
from setuptools import setup, find_packages
import fconv
def _requires_from_file(filename):
return open(filename).read().splitlines()
def long_description():
with open('README.md') as f:
return f.read()
setup(
name='fconv',
version=fconv.__version__,
description=fconv.__doc__,
long_description=long_description(),
long_description_content_type='text/markdown',
author=fconv.__author__,
url=fconv.__url__,
author_email="[email protected]",
license=fconv.__license__,
entry_points={
'console_scripts': [
'fconv = fconv.__main__:main',
],
},
packages=find_packages(include=['fconv', 'fconv.*']),
install_requires=_requires_from_file('requirement.txt'),
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing"
]
)