8 lines
164 B
Python
8 lines
164 B
Python
|
from setuptools import setup
|
||
|
setup(
|
||
|
name='initness',
|
||
|
version='0.0.1a1',
|
||
|
packages=['initness'],
|
||
|
include_package_data=True,
|
||
|
)
|