-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 736 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 736 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
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='beersolver',
version='0.1.1',
author="Henrique Nepomuceno",
author_email="nepo26.hn@protonmail.com",
packages=find_packages(),
py_modules=['exercises/ThirdChapter/commands'],
description="A script for solving vector mechanics Ferdinand P. Beer proposed exercises.",
long_description=readme,
long_description_content_type='text/markdown',
url="https://github.com/Nepo26/Beersolver",
license="GNU GPLv3",
install_requires=[
'Click',
],
entry_points={
'console_scripts': [
'beersolver=exercises.ThirdChapter.commands:cli',
],
},
)