-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 685 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from pathlib import Path
repository_directory = Path(__file__).parent
long_description = (repository_directory / "README.md").read_text()
setup(
name='pyLionChief',
description="Module for controlling Lionel LionChief series trains",
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
version='1.0.0',
author='Jordan Maxwell',
maintainer='Jordan Maxwell',
url='https://github.com/thetestgame/pyLionChief',
packages=['lionchief'],
classifiers=[
'Programming Language :: Python :: 3',
])