-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
43 lines (40 loc) · 1.66 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
from pathlib import Path
from setuptools import find_packages, setup
import sonyflake.about as about
if __name__ == "__main__":
setup(
name=about.NAME,
version=about.VERSION,
author=about.AUTHOR.get("name"),
author_email=about.AUTHOR.get("email"),
description="A distributed unique ID generator inspired by Twitter's Snowflake.",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/hjpotter92/sonyflake-py",
packages=find_packages(),
package_data={"sonyflake": ["py.typed"]},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
],
python_requires=">=3.6",
project_urls={
"Documentation": "https://sonyflake-py.rtfd.io/",
"Code coverage": "https://app.codecov.io/gh/hjpotter92/sonyflake-py",
"Builds history": "https://travis-ci.com/hjpotter92/sonyflake-py",
"Changelog": "https://sonyflake-py.rtfd.io/changelog",
},
tests_require=(
"codecov>=2.1.11",
"coverage>=5.4",
"pytest>=6.2.2",
),
)