forked from gramener/gramex-nlg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (48 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
51
52
53
54
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
"""
NLG Setup.
"""
import builtins
from setuptools import setup, find_packages
builtins.__NLG_SETUP__ = True
# Setuptools config
NAME = "nlg"
DESCRIPTION = "Natural Language Generation framework for Python."
with open('README.rst', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
MAINTAINER = 'Jaidev Deshpande'
MAINTAINER_EMAIL = 'jaidev.deshpande@gramener.com'
URL = "https://github.com/gramener/gramex-nlg"
DOWNLOAD_URL = 'https://pypi.org/project/nlg/#files'
LICENSE = 'MIT'
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/gramener/gramex-nlg/issues',
'Documentation': 'https://learn.gramener.com/guide/nlg',
'Source Code': 'https://github.com/gramener/gramex-nlg'
}
# Requirements
install_requires = [
'gramex',
'humanize',
'inflect',
'spacy==2.1.8',
]
# Setup
import nlg # NOQA: E402
setup(
name=NAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
include_package_data=True,
version=nlg.__version__,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=install_requires
)