-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 728 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 728 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
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
# Package meta-data.
NAME = 'pyexample'
DESCRIPTION = 'Example python module'
URL = 'https://github.com/OAustlid/pyexample'
EMAIL = 'OAustlid@gmail.com'
AUTHOR = 'Olve A. Austlid'
REQUIRES_PYTHON = '>=3.8.0'
VERSION = '0.0.1'
# What packages are required for this module to be executed?
REQUIRED = [
# 'numpy',
]
setup(
name='pyexample',
version='0.0.1',
author='Olve A. Austlid',
author_email="OAustlid@gmail.com",
packages=['pyexample'],
scripts=[],
license='LICENSE',
description='An example python package',
long_description=open('README.md').read(),
install_requires=[],
)