This repository was archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.32 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.32 KB
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
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="languagecodes",
version="1.1.1",
description="A library that normalises language codes",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords="names languages iso ",
author="Friedrich Lindenberg",
author_email="friedrich@pudo.org",
url="http://github.com/alephdata/languagecodes",
license="MIT",
packages=["languagecodes"],
namespace_packages=[],
include_package_data=True,
package_data={"languagecodes": ["py.typed", "iso-639-3.tab"]},
zip_safe=False,
test_suite="nose.collector",
install_requires=["banal >= 1.0.0, < 2.0.0"],
extras_require={
"dev": [
"wheel>=0.29.0",
"twine",
"mypy",
"flake8>=2.6.0",
"nose",
"coverage>=4.1",
]
},
)