forked from Den4ikAI/ruaccent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 890 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 890 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
25
26
27
28
29
30
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='ruaccent',
version='1.5.6.2',
author='Denis Petrov',
author_email='arduino4b@gmail.com',
description='A Russian text accentuation tool',
license='Apache License 2.0',
url='https://github.com/Den4ikAI/ruaccent',
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
],
package_data={
'': ['*.md', '*.txt'],
},
include_package_data=True,
)