-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·31 lines (30 loc) · 1.1 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
#!/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from io import open
setup(
name="munidata",
version='2.4.0',
description="Provides an API for accessing multiple instances of Unicode data",
license="BSD",
author='Cofomo, Viagenie and Wil Tan',
author_email='[email protected]',
install_requires=["picu"],
packages=find_packages(),
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
scripts=['tools/parse_idna_tables.py'],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries'
]
)