-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 760 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 760 Bytes
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
from pathlib import Path
from setuptools import setup
from fractional_indexing import __version__, __doc__, __licence__
ROOT = Path(__file__).parent
setup(
name='fractional-indexing',
description=__doc__.strip(),
long_description=(ROOT / 'README.md').read_text().strip(),
long_description_content_type='text/markdown',
version=__version__,
license=__licence__,
url='https://github.com/httpie/fractional-indexing-python',
py_modules=[
'fractional_indexing',
],
install_requires=[
'setuptools',
],
project_urls={
'GitHub': 'https://github.com/httpie/fractional-indexing-python',
'Twitter': 'https://twitter.com/httpie',
'Discord': 'https://httpie.io/discord',
},
)