-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (38 loc) · 2.21 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
39
40
41
42
from setuptools import setup, find_packages
from numpy.distutils.core import setup
from os import path
import io
## instructions for upload to pypi
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
if __name__ == "__main__":
setup(name = 'cloudstor',
author = "Louis Moresi",
author_email = "[email protected]",
url = "https://github.com/underworldcode/cloudstor",
version = "0.1.4",
description = "Python access to AARNET cloudstor (owncloud) storage via webdav",
long_description = long_description,
long_description_content_type='text/markdown',
packages = ['cloudstor'],
install_requires = ['webdav', 'humanfriendly'],
setup_requires = ['webdav', 'humanfriendly'],
# tests_require = ['pytest','webdav'],
# package_data = {'quagmire': ['Examples/Notebooks/data',
# 'Examples/Notebooks/WorkedExamples/*.ipynb', ## Leave out Unsupported
# 'Examples/Notebooks/Tutorial/*.ipynb',
# 'Examples/Scripts/IdealisedExamples',
# 'Examples/Scripts/LandscapeEvolution',
# 'Examples/Scripts/LandscapePreprocessing', ## Leave out Unsupported
# 'Examples/Scripts/Scripts/*.py']},
#
classifiers = ['Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',]
)