-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (28 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (28 loc) · 1.1 KB
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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
from debeer.__version__ import __version__
# load the README file and use it as the long_description for PyPI
def readme():
with open('README.md', 'r') as f:
return f.read()
# package configuration - for reference see:
# https://setuptools.readthedocs.io/en/latest/setuptools.html#id9
setup(
name='methodedebeer',
version=__version__,
description='methodedebeer, Ghent University open-source implementation of axial pile capacity calculations according to Belgian practice',
long_description=readme(),
url='https://github.com/snakesonabrain/methodedebeer',
download_url='https://github.com/snakesonabrain/methodedebeer/archive/master.zip',
keywords=['engineering', 'geotechnical', 'piles'],
author='Bruno Stuyts',
author_email='bruno.stuyts@ugent.be',
license='Creative Commons BY-SA 4.0',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
python_requires='>=3.6'
)