-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
38 lines (32 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
#!/usr/bin/env python
import pathlib
import sys
from setuptools import find_packages, setup
from timeflake import __version__
assert sys.version_info >= (3, 7), "Requires Python v3.7 or above."
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="timeflake",
version=__version__,
author="Anthony Najjar Simon",
url="https://github.com/anthonynsimon/timeflake",
description="Timeflake is a 128-bit, roughly-ordered, URL-safe UUID. Inspired by Twitter's Snowflake, Instagram's ID and Firebase's PushID.",
long_description=README,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(exclude=["tests", "benchmark"]),
include_package_data=True,
entry_points={
"console_scripts": [
"timeflake=timeflake.__main__:main",
]
},
tests_require=[],
)