-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (48 loc) · 1.57 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
55
# -*- coding: utf-8 -*-
"""Pseudorandom ID generation with fun, unique animal ID's."""
from setuptools import setup, find_packages
LONG_DESCRIPTION = """
animalid is a simple library for generating fun, unique animal ID's.
ID's are strings composed of lowercase ascii letters and underscores, with a
number of adjectives followed by an animal name.
Use this library to generate unique ID's that are memorable and easy to read
and type.
"""
test_requirements = [
"pydocstyle",
"pytest",
"pytest-flake8",
"pytest-pep8",
"pytest-mccabe",
"pytest-cov",
]
release_requirements = ["twine", "zest.releaser[recommended]"]
setup(
name="animalid",
version="0.0.10",
description=("Library for generating unique IDs with animal names."),
url="https://github.com/alex-dr/animalid",
author="Alex Conway",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
keywords=["random", "id", "unique", "identifier"],
long_description=LONG_DESCRIPTION,
packages=find_packages(exclude=["tests"]),
install_requires=[],
package_data={"animalid": ["lists/*.txt"]},
zip_safe=False,
extras_require={
"dev": release_requirements + test_requirements,
"release": release_requirements,
"testing": test_requirements,
},
tests_require=test_requirements,
test_suite="tests",
)