-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 859 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='roll',
version=read('VERSION'),
description='A command line tool which simulates rolling a die',
long_description=read('README.md'),
long_description_content_type='text/x-markdown',
keywords='D&D Dice Roll CLI',
author='David Haller',
author_email='[email protected]',
license='GPLv3',
url='https://github.com/davidhaller/roll',
download_url = 'https://github.com/davidhaller/roll/archive/master.zip',
packages=find_packages(),
package_data={
'roll': ['../VERSION']
},
entry_points={
'console_scripts': [
'roll = roll.__main__:main',
]
},
python_requires='>=3.12',
)