mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-12 07:46:28 +00:00
12 lines
163 B
Python
12 lines
163 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name = 'TombLib',
|
||
|
version = '1.1',
|
||
|
packages = ['tomblib'],
|
||
|
|
||
|
test_suite = 'nose.collector'
|
||
|
)
|
||
|
|
||
|
|