-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 1007 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 1007 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
31
32
33
34
from pathlib import Path
from setuptools import setup
if __name__ != '__main__':
raise RuntimeError("setup.py should never be imported")
README = Path('./README.md')
setup(
name="samplepackage",
version="0.1",
author="GlebMorgan",
description="Sample python package for reference purposes",
long_description=README.read_text(),
long_description_content_type="text/markdown",
url='https://github.com/GlebMorgan/SamplePackage',
packages=['package'],
include_package_data=True,
python_requires='>=3.7.0',
setup_requires=['tomlkit'],
extras_require={'test': 'pytest'},
platforms='Windows', # values are ;-separated
classifiers=[
'Intended Audience :: Education',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
],
)