💾 Setup.py script updated with "src" directory
This commit is contained in:
+7
-4
@@ -1,18 +1,21 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="bxpkg",
|
name="bxpkg",
|
||||||
version="1.1.1",
|
version="1.1.1",
|
||||||
description="Generate 'BreezeX' cursor theme from PNGs file",
|
description="Generate 'BreezeX' cursor theme from PNGs file",
|
||||||
url="https://github.com/ful1e5/BreezeX_Cursor",
|
package_dir={"": "src"},
|
||||||
packages=["bxpkg"],
|
packages=find_packages(where="src"),
|
||||||
package_dir={"bxpkg": "bxpkg"},
|
|
||||||
author="Kaiz Khatri",
|
author="Kaiz Khatri",
|
||||||
author_email="kaizmandhu@gamil.com",
|
author_email="kaizmandhu@gamil.com",
|
||||||
install_requires=["clickgen==1.1.9"],
|
install_requires=["clickgen==1.1.9"],
|
||||||
|
url="https://github.com/ful1e5/BreezeX_Cursor",
|
||||||
|
project_urls={
|
||||||
|
"Bug Tracker": "https://github.com/ful1e5/BreezeX_Cursor/issues",
|
||||||
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||||
|
|||||||
Reference in New Issue
Block a user