forked from jaidevd/numerizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.11 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
"""
"""
from setuptools import setup, find_packages
# Setuptools config
NAME = "numerizer"
DESCRIPTION = "Python module for converting natural language numbers into ints and floats."
with open('README.rst', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
MAINTAINER = 'Jaidev Deshpande'
MAINTAINER_EMAIL = '[email protected]'
URL = "https://github.com/jaidevd/numerizer"
DOWNLOAD_URL = 'https://pypi.org/project/numerizer/#files'
LICENSE = 'MIT'
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/jaidevd/numerizer/issues',
'Documentation': 'https://github.com/jaidevd/numerizer/tree/master/README.rst',
'Source Code': 'https://github.com/jaidevd/numerizer'
}
VERSION = '0.2.0'
# Requirements
install_requires = []
# Setup
setup(
name=NAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
version=VERSION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=install_requires
)